/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: " Sans-serif",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* color: var(--heading-color); */
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #B20B11;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
/* ============================= */
/* DEFAULT TRANSPARENT HEADER */
/* ============================= */

.index-page .header {
  background: transparent !important;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ============================= */
/* ON SCROLL */
/* ============================= */

.index-page.scrolled .header {
  background: #000000 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============================= */
/* ON HOVER */
/* ============================= */

.index-page .header:hover {
  background: #000000 !important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* ==================================================
   DESKTOP NAV
================================================== */
@media (min-width: 1200px) {

  .header {
    background: #000;
  }
@media (min-width: 1200px) {

  .navmenu .dropdown ul a {
    white-space: nowrap;   /* text break band */
  }

}
  .navmenu > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
    list-style: none;
  }

  .navmenu a {
    display: block;
    padding: 16px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s ease;
  }

  .navmenu a:hover {
    color: #f4c400;
  }

  /* DESKTOP DROPDOWN */
  /* ============================= */
/* DESKTOP DROPDOWN (SMOOTH) */
/* ============================= */

.navmenu .dropdown > ul {
  position: absolute;
  top: 110%;
  left: 0;
  background: #000;
  min-width: 240px;
  padding: 12px 0;
  border-radius: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 999;
}

/* Show Main Dropdown */
.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items */
.navmenu .dropdown ul li {
  position: relative;
  width: 100%;
}

/* Links */
.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  transition: all 0.3s ease;
}

/* Hover Effect */
.navmenu .dropdown ul a:hover {
  background: #f4c400;
  color: #000;
  padding-left: 25px;
}

/* ============================= */
/* SUB DROPDOWN (LEVEL 2) */
/* ============================= */

.navmenu .dropdown ul .dropdown > ul {
  top: 0;
  left: 100%;
  transform: translateX(15px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
  border-radius: 8px;
}

/* Show Submenu */
.navmenu .dropdown ul .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* ============================= */
/* MAIN MENU UNDERLINE EFFECT */
/* ============================= */

.navmenu > ul > li > a {
  position: relative;
}

/* Underline Base */
.navmenu > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0%;
  height: 2px;
  background: #f4c400;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* On Hover */
.navmenu > ul > li:hover > a::after {
  width: 70%;
}

  .mobile-nav-toggle,
  .nav-toggle {
    display: none;
  }
}

/* ==================================================
   MOBILE NAV (SAME THEME)
================================================== */
@media (max-width: 1199px) {

  * {
    list-style: none;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    position: relative;
    z-index: 10001;
    color: #fff;
  }

  .menu-close {
    display: none;
  }

  /* ICON SWITCH */
  #nav-toggle:checked + .mobile-nav-toggle .menu-open {
    display: none;
  }

  #nav-toggle:checked + .mobile-nav-toggle .menu-close {
    display: inline;
  }

  /* MOBILE MENU PANEL */
  .navmenu > ul {
    position: fixed;
    top: 80px;
    left: 15px;
    right: 15px;
    background: #000;
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 10000;
  }

  /* MENU OPEN */
  #nav-toggle:checked ~ ul {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* MOBILE LINKS */
  .navmenu a {
    display: block;
    padding: 14px 22px;
    font-size: 16px;
    color: #fff;
  }

  .navmenu a:hover {
    color:#f4c400;
  }

  /* MOBILE DROPDOWN */
  .navmenu .dropdown ul {
    display: none;
    position: static;
    background: #111;
    margin: 6px 15px 10px;
    border-radius: 8px;
    padding: 8px 0;
  }

  /* TAP TO OPEN DROPDOWN */
  .navmenu .dropdown:focus-within > ul {
    display: block;
  }

  .navmenu .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* DROPDOWN ARROW */


  /* ARROW ROTATE */
  .navmenu .dropdown:focus-within .dropdown-toggle::before {
    transform: rotate(180deg);
  }

  /* REMOVE EXTRA SYMBOLS */
  .navmenu li::before,
  .navmenu li::marker {
    content: none !important;
  }
}

/* ==================================================
   BODY SCROLL LOCK (MENU OPEN)
================================================== */
@media (max-width: 1199px) {
  body:has(#nav-toggle:checked) {
    overflow: hidden;
  }
}

/* ===============================
   SHIV KHERA FOOTER Ã¢â‚¬â€œ EXACT LOOK
================================ */

.sk-footer {
  font-family: "Poppins", Arial, sans-serif;
  color: #fff;
}

/* TOP */
.sk-footer-top {
  background: #1d1d1f;
  padding: 80px 0;
}

.sk-footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

/* LEFT */
.sk-logo {
  font-size: 42px;
  font-family: "Segoe Script", cursive;
  margin-bottom: 20px;
}

.sk-tagline {
  font-size: 28px;
  line-height: 1.3;
  color: #dbe7ff;
}

/* LINKS */
.sk-links,
.sk-contact {
  list-style: none;
  padding: 0;
}

.sk-links li,
.sk-contact li {
  padding: 6px 0;
  font-size: 15px;
}

.sk-links a,
.sk-contact a {
  color: #fff;
  text-decoration: none;
}

.sk-links a:hover,
.sk-contact a:hover {
  text-decoration: underline;
}

/* SOCIAL */
.sk-social {
  margin-top: 20px;
}

.sk-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  color: #fff;
  margin-right: 10px;
  border-radius: 4px;
  font-size: 16px;
}

.sk-social a:hover {
  background: rgba(255,255,255,0.35);
}

/* BOTTOM BAR */
.sk-footer-bottom {
  background: #000000;
  padding: 18px 0;
  font-size: 13px;
  color: #c7d6eb;
}

.sk-footer-bottom .gstin {
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sk-footer-top {
    text-align: center;
  }

  .sk-tagline {
    font-size: 22px;
  }

  .sk-footer-bottom {
    text-align: center;
  }
}
/* ===============================
   WHATSAPP FLOATING BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: #1ebe5d;
  color: #fff;
}

/* Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: whatsapp-pulse 1.8s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Mobile spacing */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 15px;
    bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color:#ededed;
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


/* HERO SECTION */
/* HERO SECTION */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

/* VIDEO FULL SCREEN */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgb(2 3 6 / 87%);
  z-index:2;
}

/* CONTENT ABOVE VIDEO */
.hero-content{
  position:relative;
  z-index:3;
  width:100%;
  padding:0 20px;
}

/* TEXT ANIMATION AREA */
.text-mask{
  height:330px;
  overflow:hidden;
}

.text-list{
  display:flex;
  flex-direction:column;
}

.line{
  height:50px;
  line-height:50px;
  font-size:50px;
  font-weight:700;
  letter-spacing:-1px;
  opacity:.55;
  transform:scale(.95);
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

.text-mask{
  height:260px;
}

.line{
  font-size:38px;
  line-height:44px;
  height:44px;
}

}

@media(max-width:768px){

.text-mask{
  height:200px;
}

.line{
  font-size:30px;
  line-height:36px;
  height:36px;
}

}

@media(max-width:480px){

.hero{
  padding:60px 15px;
}

.text-mask{
  height:150px;
}

.line{
  font-size:22px;
  line-height:28px;
  height:28px;
}

}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* =========================
   SECTION STRIP
========================= */
.trusted-by-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #fff6e6, #ffffff);
}

/* =========================
   CONTAINER
========================= */
.trusted-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 9px 0;
}

/* =========================
   TRUSTED BY Ã¢â‚¬â€œ LEFT CORNER
========================= */
.trusted-title-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background:#f4c400;
  color: #000;
  padding: 25px 34px;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 10;
}

/* =========================
   LOGO SLIDER
========================= */
.trusted-slider-box {
  flex: 1;
  overflow: hidden;
  padding-left: 210px;
}

.trusted-logos{
display:flex;
gap:50px;
width:max-content;
animation:scroll 60s linear infinite;
}

/* Ã°Å¸â€Â¥ pause on hover */
.trusted-slider-box:hover .trusted-logos {
  animation-play-state: paused;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  max-height: 65px;
  object-fit: contain;
 
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.12);
}



/* =========================
   ANIMATION
========================= */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   MOBILE Ã¢â‚¬â€œ FULL WIDTH
========================= */
@media (max-width: 768px) {

  .trusted-container {
    flex-direction: column;
    padding: 0;
  }

  .trusted-title-box {
    position: relative;
    transform: none;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 20px;
  }

  .trusted-slider-box {
    padding-left: 0;
    width: 100%;
    margin-top: 12px;
  }

.trusted-logos {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 60s linear infinite;
}

  .logo img {
    max-height: 42px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/* ===============================
   CARDINAL BANNER Ã¢â‚¬â€œ PREMIUM
================================= */
.cardinal-banner{
  width:100%;
  min-height:420px;
  background:url("../img/services/Cardinal.jpg") center center / cover no-repeat;
  position:relative;
  overflow:hidden;
  
}

/* subtle zoom animation on background */
.cardinal-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:inherit;
  animation:zoomBg 18s ease-in-out infinite;
  z-index:0;
}

@keyframes zoomBg{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.08); }
  100%{ transform:scale(1); }
}

/* overlay */
.cardinal-overlay{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  /* background:rgba(120, 0, 0, 0.88); */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
}

/* content animation */
.cardinal-content{
  max-width:900px;
  color:#fff;
  animation:fadeUp 1.2s ease forwards;
}

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

.cardinal-subtitle{
  display:block;
  font-size: 28px;
  letter-spacing:1px;
  margin-bottom:12px;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:0.2s;
}

.cardinal-content h2{
  font-size:42px;
  font-weight:700;
  color: white;
  line-height:1.3;
  margin-bottom:30px;
  opacity:0;
  animation:fadeUp 1s ease forwards;
  animation-delay:0.4s;
}

/* CTA BUTTON Ã¢â‚¬â€œ glow + pulse */
.cardinal-btn{
  display:inline-block;
  padding:14px 38px;
  background: #B20B11;
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
  border-radius:30px;
  box-shadow:0 0 0 rgba(245,163,0,0.7);
  animation:pulse 2s infinite;
  transition:all 0.3s ease;
}

@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(245,163,0,0.6);
  }
  70%{
    box-shadow:0 0 0 18px rgba(245,163,0,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(245,163,0,0);
  }
}

.cardinal-btn:hover{
  background: #B20B11;
  transform:translateY(-4px);
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:768px){
  .cardinal-content h2{
    font-size:30px;
  }
}

/* ===============================
   UPCOMING EVENTS
================================= */
.events-section{
  padding:70px 20px;
  background:#f2f2f2;
}

.events-title{
  text-align:center;
  font-size:42px;
  font-weight:600;
  margin-bottom:40px;
}

.events-table{
  width:100%;
  border-top:1px solid #ddd;
}

.events-header,
.events-row{
  display:grid;
  grid-template-columns: 2.2fr 1.5fr 1fr 2.2fr 1.2fr;
  align-items:center;
}

.events-header{
  background:#000;
  font-family: "Roboto", Sans-serif;
  color:#fff;
  font-weight:600;
  padding:16px 10px;
}

.events-header div{
  font-size:16px;
}

.events-row{
  padding:26px 10px;
  border-bottom:1px solid #ddd;
  font-weight: 500;
  font-family: "Roboto", Sans-serif;
}

.events-row div{
  font-size:15px;
  line-height:1.6;
}

.enroll-btn{
  display:inline-block;
  background: #B20B11;
  color:#fff;
  padding:10px 18px;
  font-size:14px;
  font-weight:600;
  border-radius:4px;
  transition:all 0.3s ease;
}

.enroll-btn:hover{
  background: #B20B11;
  transform:translateY(-2px);
}

/* footer button */
.events-footer{
  text-align:center;
  margin-top:50px;
}

.explore-btn{
  display:inline-block;
  padding:16px 38px;
  background: #B20B11;
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
  border-radius:30px;
  transition:all 0.3s ease;
}

.explore-btn:hover{
  background: #B20B11;
  transform:translateY(-3px);
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:992px){
  .events-header{
    display:none;
  }

  .events-row{
    grid-template-columns:1fr;
    gap:10px;
  }

  .events-row div{
    font-size:14px;
  }

  .events-row div:last-child{
    margin-top:10px;
  }
}

/* ===============================
   BOOK SECTION Ã¢â‚¬â€œ FULL CSS
================================= */

.book-section{
  padding:80px 20px;
  background:#ffffff;
}

.book-section .container{
  max-width:1200px;
  margin:auto;
}

/* GRID LAYOUT */
.book-grid{
  display:grid;
  grid-template-columns:120px 1fr 2fr;
  gap:40px;
  align-items:flex-start;
}

/* ===============================
   THUMBNAILS
================================= */
.book-thumbs{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.book-thumbs img{
  width:100px;
  cursor:pointer;
  opacity:0.5;
  transition:all 0.3s ease;
  box-shadow:0 6px 15px rgba(0,0,0,0.15);
  background:#fff;
}

.book-thumbs img.active,
.book-thumbs img:hover{
  opacity:1;
  transform:scale(1.05);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* ===============================
   MAIN BOOK IMAGE
================================= */
.book-main{
  text-align:center;
}

.book-main img{
  max-width:100%;
  height:auto;
  transition:opacity 0.3s ease;
  
  background:#fff;
}

/* ===============================
   CONTENT
================================= */
.book-content h2{
  font-size:32px;
  font-weight:600;
  color:#f4c400;
  margin-bottom:12px;
}

.book-intro{
  font-size:16px;
  margin-bottom:18px;
  color:#333;
}

.book-points{
  padding-left:20px;
  margin-bottom:30px;
}

.book-points li{
  font-size:15px;
  line-height:1.7;
  margin-bottom:10px;
  color:#222;
}

/* ===============================
   BUTTONS
================================= */
.book-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-dark{
  background: #B20B11;
  color:#fff;
  padding:14px 34px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  display:inline-block;
  transition:all 0.3s ease;
}

.btn-dark:hover{
  background: #B20B11;
}

.btn-outline{
  border:2px solid #f4c400;
  color:#1f2a3a;
  background-color: #f4c400;
  padding:12px 32px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  display:inline-block;
  transition:all 0.3s ease;
}

.btn-outline:hover{
  background: #B20B11;
  color:#fff;
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:992px){
  .book-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .book-thumbs{
    flex-direction:row;
    justify-content:center;
  }

  .book-thumbs img{
    width:80px;
  }

  .book-buttons{
    justify-content:center;
  }
}
/* ===============================
   BOOKS CTA STRIP
================================= */
.books-cta-strip{
  width:100%;
  background:#f4c400; /* same blue tone */
  padding:60px 20px;
  text-align:center;
}

.books-cta-strip h2{
  color:#fff;
  font-size:36px;
  font-weight:600;
  margin:0;
  line-height:1.4;
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:768px){
  .books-cta-strip h2{
    font-size:26px;
  }
}


/* ===============================
   BEGIN YOUR TRANSFORMATION
================================= */
.transformation-section{
  padding:80px 20px;
  background:#f5f5f5;
}

.section-title{
  text-align:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:60px;
  color:#000;
}

.transformation-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
}

.transform-card{
  position:relative;
  height:420px;
  background-size:cover;
  filter: grayscale(1);
  background-position:center;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.card-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  padding:30px;
  color:#fff;
  display:flex;
  flex-direction:column;
}

.card-overlay h2{
  font-size:32px;
  text-align: center;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.2;
}

.card-overlay p{
  font-size:21px;
  line-height:1.6;
  margin-bottom:auto;
  font-family: "Roboto", Sans-serif;
}

.card-overlay a{
  margin-top:20px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
}

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

.coming-soon{
  margin-top:20px;
  font-weight:700;
  font-size:16px;
}

/* ===============================
   RESPONSIVE
================================= */
@media(max-width:1200px){
  .transformation-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .section-title{
    font-size:30px;
  }

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

  .transform-card{
    height:380px;
  }
}

/* ===============================
   EXPLORE PUBLICATIONS
================================= */
.publications-section{
  padding:80px 20px;
  background:#ffffff;
}

.publications-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* ================= CARD ================= */
.publication-card{
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  transition:all 0.35s ease;
}

.publication-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.2);
}

/* ================= IMAGE ================= */
.pub-image{
  position:relative;
  height:230px;
  overflow:hidden;
  background:#000;
}

/* IMAGE */
.pub-image img{
  width:100%;
  height:100%;
  object-fit:contain;   /* FULL IMAGE SHOW */
  background:#e5e5e5;

  transition:transform 0.6s ease, filter 0.6s ease;
}

/* OVERLAY (SOFT Ã¢â‚¬â€œ NOT DULL) */
.pub-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
  transition:background 0.4s ease;
  z-index:1;
}

/* HOVER EFFECT (KEY FIX Ã°Å¸â€Â¥) */
.publication-card:hover .pub-image img{
  transform:scale(1.06);
  filter:brightness(1.05) contrast(1.05);
}

.publication-card:hover .pub-image::after{
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(255, 255, 255, 0.25)
  );
}

/* ================= BADGE ================= */
.pub-badge{
  position:absolute;
  top:15px;
  right:15px;
  background:#5fcf65;
  color:#fff;
  font-size:12px;
  font-weight:600;
  padding:6px 14px;
  border-radius:20px;
  z-index:2;
}

/* ================= CONTENT ================= */
.pub-content{
  padding:26px;
}

.pub-content h3{
  font-size:18px;
  font-weight:700;
  line-height:1.45;
  margin-bottom:14px;
  color:#222;
}

.pub-content p{
  font-size:14.5px;
  color:#666;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
  .publications-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .publications-grid{
    grid-template-columns:1fr;
  }

  .pub-image{
    height:200px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 30px 0;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  max-height: 70%;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services .service-item .icon {
  margin-bottom: 10px;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  transform: translateY(-10px);
}

.services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
  background: var(--surface-color);
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.work-process .steps-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.work-process .steps-item:hover .steps-image img {
  transform: scale(1.1);
}

.work-process .steps-image {
  position: relative;
  height: 280px;
}

.work-process .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-process .steps-content {
  position: relative;
  padding: 40px 30px 30px;
}

.work-process .steps-content .steps-number {
  position: absolute;
  left: 30px;
  top: -30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.work-process .steps-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.work-process .steps-content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.work-process .steps-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.work-process .steps-features .feature-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.work-process .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
  .work-process .steps-image {
    height: 240px;
  }

  .work-process .steps-content {
    padding: 35px 25px 25px;
  }

  .work-process .steps-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .work-process .steps-item {
    margin-bottom: 30px;
  }

  .work-process .steps-image {
    height: 220px;
  }

  .work-process .steps-content {
    padding: 30px 20px 20px;
  }

  .work-process .steps-content .steps-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 25px;
    top: -25px;
  }

  .work-process .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .work-process .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
.subscribe .container {
  padding: 80px 80px 0 80px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .subscribe .container {
    padding: 60px 60px 0 60px;
  }
}

@media (max-width: 575px) {
  .subscribe .container {
    padding: 25px 15px 0 15px;
    border-radius: 0;
  }
}

.subscribe .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subscribe .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.subscribe .cta-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: 1px solid var(--accent-color);
  padding-left: 20px;
}

.subscribe .cta-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.subscribe .cta-form .btn {
  height: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe .cta-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .subscribe .cta-form .btn {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .subscribe .cta-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .subscribe .cta-image {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Recent Blog Postst Section
--------------------------------------------------------------*/
.recent-blog-postst .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-postst .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-postst .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-postst .post-item .post-content {
  padding: 30px;
}

.recent-blog-postst .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-postst .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-postst .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-postst .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-postst .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-postst .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-postst .post-item:hover .post-title,
.recent-blog-postst .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-postst .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 20px 0;
}

.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
  padding-top: 10px;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #B20B11;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #B20B11;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.contact-icons{
  display: flex;
  gap: 12px; /* icons ke beech space */
}

.icon-btn{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
 
  border-radius: 6px;
  color: #fff;              /* white icon */
  transition: all 0.35s ease;
}

.icon-btn i{
  font-size: 18px;
}

/* Ã°Å¸â€Â¥ Hover Animation */
.icon-btn:hover{
  transform: translateY(-6px); /* upar move */
 
  color: #ffffff;                 /* hover par icon black */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.btn-about-started {
  display: inline-block;
  padding: 12px 28px;
  background: #B20B11;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-about-started:hover {
  background: #B20B11;
  color: white;
}


/* About section start */
/* ===============================
   ABOUT HERO (SAFE OVERRIDE)
================================ */
/* ===============================
   ABOUT HERO Ã¢â‚¬â€œ BG IMAGE VERSION
================================ */
.about-hero-bg {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url("../img/services/Shiv-Khera.jpg") left center / cover no-repeat;
  position: relative;
}

/* Light overlay like image */
.about-hero-overlay {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
}

/* CONTENT RIGHT */
.about-hero-content {
  margin-left: auto;
  width: 55%;
  padding: 60px 80px;
}

.about-hero-content h1 {
  font-size: 70px;
  line-height: 1.15;
  margin-left: 65px;
  font-weight:bold;
  text-align:left;
  color: #ffffff;
  font-family: prata;
  margin-bottom: 30px;
  opacity: 0; /* start hidden */
  animation: fadeUp 1.2s ease-out forwards;

    text-shadow:
    1px 1px 0 #1d1d1f,
    2px 2px 0 #2a2a2a,
    3px 3px 0 #30302f,
    4px 4px 0 #484848,
    5px 5px 10px rgba(0,0,0,0.4);

}

/* Fade up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* WATCH LINK */
.watch-link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
   opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

.watch-link:hover,
.watch-link:focus,
.watch-link:active {
  color: #000;
  text-decoration: none;
}


.play-icon {
  width: 60px;
  height: 60px;
  background: #B20B11;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .about-hero-bg {
    background-position: center;
  }

  .about-hero-overlay {
    background: rgba(255,255,255,0.9);
  }

  .about-hero-content {
    width: 100%;
    margin-left: 0;
    padding: 40px 25px;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .watch-link {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about-hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }
}
/* ===============================
   ABOUT INTRO SECTION
================================ */
.about-intro {
  padding: 80px 0px;
  background: #ffffff;
}

.about-intro .container {
  max-width: 900px;
}

.about-intro h2 {
  font-family: "Roboto", Sans-serif;"
  font-size:5px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
  color: #f4c400;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #111;
}

.about-intro strong {
  font-weight: 700;
}

/* Trademark */
.trademark-title {
  margin-top: 35px;
  font-weight: 600;
}

.trademark-quote {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 30px;
  }

  .about-intro p {
    font-size: 16px;
  }

  .trademark-quote {
    font-size: 18px;
  }
}

/* ===============================
   WHO IS SECTION
================================ */
.who-section {
  min-height: 70vh;
  background: url("../img/services/Shiv-Khera-intro.jpg") right center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* White fade overlay */
.who-overlay {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
}

/* Content box */
.who-content {
  max-width: 520px;
  /* padding: 80px 0; */
  opacity: 0;
  animation: fadeUpSoft 1.2s ease-out forwards;
}

.who-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1d1d1f;
  font-family: prata;"
  opacity: 0;
  animation: fadeUpSoft 1s ease-out forwards;
  animation-delay: 0.1s;
}

.who-content p {
  font-size: 25px;
  line-height: 1.7;
  color: #111;
  text-align: justify;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  opacity: 0;
  animation: fadeUpSoft 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.who-content strong {
  font-weight: 700;
}

/* ===============================
   FADE UP ANIMATION
================================ */
@keyframes fadeUpSoft {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .who-section {
    background-position: center;
  }

  .who-overlay {
    background: rgba(255,255,255,0.92);
  }

  .who-content {
    max-width: 100%;
    padding: 60px 20px;
    text-align: center;
  }

  .who-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .who-content h2 {
    font-size: 26px;
  }

  .who-content p {
    font-size: 16px;
  }
}

/* ===============================
   BASE SECTION
================================ */
.words-section {
  padding: 60px 0 90px;
  background: #dbdbdb;
  font-family: Arial, Helvetica, sans-serif;
}

.words-section .container {
  max-width: 1200px;
  position: relative;
}

/* ===============================
   TITLE
================================ */
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

/* ===============================
   TOP IMAGE (RIGHT ALIGNED)
================================ */
.top-image {
  position: relative;
  margin-right: calc(-48vw + 50%);
}

.top-image img {
  display: block;
  max-width: 965px;
  width: 100%;
  height: auto;
  margin-left: auto;
}



/* ===============================
   MIDDLE CONTENT
================================ */
.middle-content {
  position: relative;
  min-height: 520px;
}

/* ===============================
   LEFT IMAGE (OVERLAP)
================================ */
.left-image {
  position: absolute;
  top: 55px;        /* overlap control */
  left: 0;
  width: 500px;       /* increased size */
  z-index: 2;
}

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

/* ===============================
   RIGHT TEXT
================================ */
.right-text {
  margin-left: 534px; /* image + gap */
  padding-top: 40px;
  max-width: 630px;
}

.right-text h3 {
  font-size: 58px;
  font-weight: 700;
  font-family: IBARRA REAL NOVA;
  margin-bottom: 20px;
  color: #424244;
}

.right-text p {
  font-size: 19.5px;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
  color: #000000;
  text-align: justify;
}

/* ===============================
   BOTTOM IMAGE
================================ */
.bottom-image {
  text-align: center;
  margin: 60px 0 65px;
}

.bottom-image img {
  width: 100%;
  max-width: 1020px;
  height: auto;
  display: inline-block;
}

/* ===============================
   TURNING POINTS
================================ */
.turning-points {
  max-width: 1180px;
  margin: 0 auto;
}

.turning-points h3 {
  text-align: center;
  font-size: 58px;
  font-weight: 700;
  font-family: prata;
  margin-bottom: 22px;
  color: #424244;
}

.turning-points p {
  font-size: 20px;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
  color: #000000;
  text-align: justify;
}

.turning-points .bold,
.turning-points strong {
  font-weight: 700;
}

.turning-points ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.turning-points ul li {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 10px;
  color: #222;
  text-align: justify;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .top-image {
    margin-bottom: 40px;
  }

  .top-image img {
    margin-left: 0;
    max-width: 100%;
  }

  .middle-content {
    min-height: auto;
  }

  .left-image {
    position: static;
    width: 100%;
    margin-bottom: 30px;
  }

  .right-text {
    margin-left: 0;
    padding-top: 0;
    max-width: 100%;
  }

  .right-text h3 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }

  .right-text h3,
  .turning-points h3 {
    font-size: 24px;
  }

  .right-text p,
  .turning-points p,
  .turning-points ul li {
    font-size: 14.5px;
  }
}


/*------new section start----- */
.newwords-section {
  padding: 60px 0 90px;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.newwords-section .container {
  max-width: 1200px;
  position: relative;
}

/* ===============================
   TITLE
================================ */
.newsection-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

/* ===============================
   TOP IMAGE (RIGHT ALIGNED)
================================ */
.newtop-image {
  position: relative;
  margin-right: calc(-48vw + 50%);
}

.newtop-image img {
  display: block;
  max-width: 965px;
  width: 100%;
  height: auto;
  margin-left: auto;
}



/* ===============================
   MIDDLE CONTENT
================================ */
.newmiddle-content {
  position: relative;
  min-height: 520px;
}

/* ===============================
   LEFT IMAGE (OVERLAP)
================================ */
.newleft-image {
  position: absolute;
  top: 55px;        /* overlap control */
  left: 0;
  width: 500px;       /* increased size */
  z-index: 2;
}

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

/* ===============================
   RIGHT TEXT
================================ */
.newright-text {
  margin-left: 534px; /* image + gap */
  padding-top: 40px;
  max-width: 630px;
}

.newright-text h3 {
  font-size: 58px;
  font-weight: 700;
  font-family: IBARRA REAL NOVA;
  margin-bottom: 20px;
  color: #424244;
}

.newright-text p {
  font-size: 23.7px;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
  color: #000000;
  text-align: justify;
}

/* ===============================
   BOTTOM IMAGE
================================ */
.newbottom-image {
  text-align: center;
  margin: 60px 0 65px;
}

.newbottom-image img {
  width: 100%;
  max-width: 1020px;
  height: auto;
  display: inline-block;
}

/* ===============================
   TURNING POINTS
================================ */
.newturning-points {
  max-width: 1180px;
  margin: 0 auto;
}

.newturning-points h3 {
  text-align: center;
  font-size: 58px;
  font-weight: 700;
  font-family: prata;
  margin-bottom: 22px;
  color: #424244;
}

.newturning-points p {
  font-size: 20px;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
  color: #000000;
  text-align: justify;
}

.newturning-points .bold,
.newturning-points strong {
  font-weight: 700;
}

.newturning-points ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.newturning-points ul li {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 10px;
  color: #222;
  text-align: justify;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .newtop-image {
    margin-bottom: 40px;
  }

  .newtop-image img {
    margin-left: 0;
    max-width: 100%;
  }

  .newmiddle-content {
    min-height: auto;
  }

  .newleft-image {
    position: static;
    width: 100%;
    margin-bottom: 30px;
  }

  .newright-text {
    margin-left: 0;
    padding-top: 0;
    max-width: 100%;
  }

  .newright-text h3 {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .newsection-title {
    font-size: 26px;
  }

  .newright-text h3,
  .newturning-points h3 {
    font-size: 24px;
  }

  .newright-text p,
  .newturning-points p,
  .newturning-points ul li {
    font-size: 14.5px;
  }
}




/* Gain & Retain Customers */
.gain-banner {
  min-height: 90vh;
    background: url("../img/services/Shiv-Khera-Public-Speaking-Banner-6.jpg") right center / cover no-repeat;
}

.gain-box {
  /* background: rgb(0 0 0 / 14%); */
  padding: 142px 55px;
  /* max-width: 820px; */
  color: #fff;
}

/* TEXT */
.gain-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.gain-title strong {
  font-weight: 800;
}

.gain-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.gain-tagline {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 8px;
}

/* BADGE */
.gain-badge {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 22px;
  margin-top: 25px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gain-box {
    padding: 35px 25px;
  }

  .gain-title {
    font-size: 32px;
  }

  .gain-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.gain-title,
.gain-subtitle,
.gain-tagline {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);
}

/* thoda strong shadow for main heading */
.gain-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}
/* UPCOMING EVENTS */
.upcoming-events {
  padding: 42px 0 0px;
  background: #ffffff;
}

.section-title {
  font-size: 58px;
  font-weight: 700;
  font-family: IBARRA REAL NOVA;
  padding-bottom: 0px;
  color: #424244;
}

.event-heading {
  font-size: 18px;
  font-weight: 600;
}

.event-text {
  font-size: 18px;
  margin-top: 5px;
}

/* PROGRAM INFO */
.program-info {
  background: #f2f2f2;
  padding: 80px 0;
}

.program-title {
  font-size: 28px;
  font-weight: 400;
}

.program-highlight {
  font-size: 36px;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .program-highlight {
    font-size: 28px;
  }
}



/* ================= CLIENTS SECTION ================= */

.clients-section {
  padding: 90px 0 100px;
  background: #f2f2f23d;
}

.clients-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #000;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 55px 40px;
  align-items: center;
  justify-items: center;
}

/* LOGO BOX */
.client-logo {
  width: 100%;
  text-align: center;
}

.client-logo img {
  max-width: 140px;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: all 0.3s ease;
}

/* OPTIONAL HOVER (professional feel) */
.client-logo img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 30px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
}
.impact-section {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.impact-container {
  max-width: 900px;
  margin: auto;
}

.impact-container h2 {
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}

.impact-subtitle {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 50px;
  color: #333;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 130px;
}

.testimonial {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.7s ease;
  position: absolute;
  left: 0;
  right: 0;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.quote {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #222;
  font-style: italic;
}

.testimonial h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: black;
}

.testimonial span {
  font-size: 14px;
  color: #555;
}

.impact-dots {
  /* margin-top: 35px; */
}

.impact-dots span {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #ddd;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.impact-dots span.active {
  background: #000;
}
.social-connect{
  background:#f4c400;
  padding:90px 20px 80px;
  text-align:center;
}

.social-connect h2{
  color:#fff;
  font-size:42px;
  font-weight:700;
  margin-bottom:50px;
}

/* ICON WRAPPER */

.social-icons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
}

/* BASE ICON */

.social-icons .icon{
  width:90px;
  height:90px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  color:#fff;
  text-decoration:none;
  transition:all .35s ease;
}

/* BRAND COLORS */

.icon.facebook{
  background:#1877f2;
}

.icon.linkedin{
  background:#0a66c2;
}

.icon.youtube{
  background:#ff0000;
}

.icon.pinterest{
  background:#e60023;
}

/* INSTAGRAM GRADIENT */

.icon.instagram{
  background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

/* HOVER EFFECT */

.social-icons .icon:hover{
  transform:translateY(-8px) scale(1.05);
}

/* GLOW EFFECT */

.icon.facebook:hover{
  box-shadow:0 15px 35px rgba(24,119,242,.6);
}

.icon.instagram:hover{
  box-shadow:0 15px 35px rgba(238,42,123,.6);
}

.icon.linkedin:hover{
  box-shadow:0 15px 35px rgba(10,102,194,.6);
}

.icon.youtube:hover{
  box-shadow:0 15px 35px rgba(255,0,0,.6);
}

.icon.pinterest:hover{
  box-shadow:0 15px 35px rgba(230,0,35,.6);
}

/* MOBILE */

@media (max-width:768px){

.social-connect h2{
  font-size:30px;
}

.social-icons{
  gap:25px;
}

.social-icons .icon{
  width:65px;
  height:65px;
  font-size:26px;
}

}

@media (max-width:480px){

.social-icons{
  gap:18px;
}

.social-icons .icon{
  width:55px;
  height:55px;
  font-size:22px;
}

}

/* ===================== */

.enquiry-section {
  background: #000;
  padding: 70px 20px 80px;
  text-align: center;
}

.enquiry-text {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}

.enquiry-email {
  color: #f4c400;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}

.enquiry-email:hover {
  text-decoration: underline;
}

/* ===================== */

@media (max-width: 768px) {
  .social-icons {
    gap: 20px;
  }

  .social-icons .icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .social-connect h2 {
    font-size: 30px;
  }

  .enquiry-text {
    font-size: 22px;
  }

  .enquiry-email {
    font-size: 20px;
  }
}
.coaching-section {
  position: relative;
  min-height: 550px;
  background: url("../img/services/coaching.jpg") right center / cover no-repeat;
  display: flex;
  align-items: center;
}


.coaching-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
}

.coaching-text {
  max-width: 520px;
 
  color: #fff;
}

.coaching-subtitle {
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

.coaching-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}

.coaching-text h1 span {
  color: #f4c400;
}

.coaching-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f4c000;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.coaching-btn:hover {
  background: #f4c400;
}


/* HERO SECTION */
.consult-hero{
  position:relative;
  min-height:600px;

  background-image:url("../img/services/consulting.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
  overflow:hidden;
}

/* OVERLAY */
.consult-hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:linear-gradient(
    to left,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.05)
  );

  z-index:1;
}

/* CONTAINER */
.consult-hero-container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 40px;

  display:flex;
  justify-content:flex-end;
}

/* CONTENT */
.consult-hero-content{
  max-width:520px;
  color:#fff;
}

/* TITLE */
.consult-hero-title{
  font-size:50px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:30px;
}

.consult-hero-title span{
  display:block;
  color:#f4c000;
}

/* BUTTON */
.consult-hero-btn{
  display:inline-block;
  padding:14px 38px;
  background:#f4c400;
  color:#000;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
}

.consult-hero-btn:hover{
  background:#f4c400;
  transform:translateY(-3px);
}

/* RESPONSIVE */

@media (max-width:768px){

.consult-hero-container{
  justify-content:center;
  text-align:center;
}

.consult-hero-title{
  font-size:32px;
}

}



.skillset-section {
  background: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.skillset-container {
  max-width: 1200px;
  margin: auto;
}

.skillset-section h2 {
  font-size: 34px;
  font-weight: 400;
}

.skillset-section h2 strong {
  font-weight: 700;
}
.mindset-section {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
}

.mindset-container {
  max-width: 1200px;
  margin: auto;
}

.mindset-features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.mindset-box {
  flex: 1;
  min-width: 220px;
}

.mindset-box img {
  width: 55px;
  margin-bottom: 15px;
}

.mindset-box h4 {
  font-size: 20px;
  font-weight: 500;
}

.mindset-text {
  font-size: 22px;
  max-width: 900px;
  margin: auto;
  line-height: 1.5;
}
.gain-section {
  padding: 90px 20px;
  background: #ffffff;
}

.gain-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

/* LEFT */
.gain-left {
  flex: 1;
}

.gain-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: black;
}

.gain-left p {
  font-size: 18px;
  margin-bottom: 22px;
  line-height: 1.5;
  color: black;
  font-weight: 400;
}

/* RIGHT RED BOX */
.gain-right {
  flex: 1;
  background: #B20B11;
  color: #fff;
  padding: 50px;
  display: flex;
  align-items: center;
}

.gain-right p {
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .gain-container {
    flex-direction: column;
  }

  .gain-right {
    padding: 35px;
  }
}
.coaching-info-section {
  padding: 90px 20px;
  background: #f3f3f3;
}

.coaching-info-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.coaching-info-image {
  flex: 1;
}

.coaching-info-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT */
.coaching-info-content {
  flex: 1;
}

.coaching-info-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-left: -28px;
  color: black;
  margin-bottom: 24px;
}

.coaching-info-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: black;
  margin-left: -30px;
  margin-bottom: 30px;
}

/* LIST */
.coaching-info-content ul {
  list-style: none;
  padding-left: 0;
}

.coaching-info-content li {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 400;
  color: black;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .coaching-info-container {
    flex-direction: column;
  }

  .coaching-info-content h2 {
    font-size: 36px;
  }
}
.consulting-section {
  padding: 48px 20px;
  background: #fff;
}

.consulting-container {
  max-width: 1200px;
  margin: auto;
}

.consulting-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
}

.consulting-subtitle {
  text-align: center;
  font-size: 20px;
  margin: 10px 0 50px;
}

.consulting-box {
  display: flex;
  border: 1px solid #dcdcdc;
  min-height: 420px;
}

/* LEFT MENU */
.consulting-menu {
  width: 320px;
  border-right: 1px solid #dcdcdc;
}

.menu-item {
  padding: 18px 20px;
  font-size: 16px;
  color: #777;
  border-bottom: 1px solid #eaeaea;
  cursor: pointer;
}

.menu-item.active {
  background: #f7f7f7;
  color: #000;
  font-weight: 600;
  border-left: 4px solid #000;
}

/* RIGHT CONTENT */
.consulting-content {
  flex: 1;
  padding: 35px 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.tab-content p,
.tab-content li {
  font-size: 17px;
  line-height: 1.6;
}
.enquire-btn-wrap {
  text-align: center;
  margin: 0px 0 10px;
}

.enquire-btn {
  display: inline-block;
  background: #f4c400;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.enquire-btn:hover {
  background: #f4c400;
}

/* ONLY THIS BUTTON IS GLOBAL */
.enquire-btn{
  background:#f4c400;
  color:#fff;
  padding:18px 50px;
  border:none;
  border-radius:50px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   ENQUIRY POPUP (SCOPED)
   ========================= */

.enquiry-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  opacity:0;
  pointer-events:none;
  transition:0.4s ease;
  z-index:9999;
}

.enquiry-modal.show{
  opacity:1;
  pointer-events:auto;
}

.enquiry-modal .enquiry-panel{
  position:absolute;
  top:0;
  right:-100%;
  width:75%;
  height:100%;
  background:#2f3fae;
  padding:60px 80px;
  color:#fff;
  transition:0.5s ease;
}

.enquiry-modal.show .enquiry-panel{
  right:0;
}

/* CLOSE */
.enquiry-modal .close-box{
  position:absolute;
  top:0;
  left:0;
  width:70px;
  height:70px;
  background:#f4c400;
  color:#2f3fae;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* TITLE */
.enquiry-modal h2{
  text-align:center;
  font-size:26px;
  margin-bottom:40px;
}

/* FORM */
.enquiry-modal input,
.enquiry-modal textarea{
  width:100%;
  background:transparent;
  border:1px solid rgba(255,255,255,0.8);
  padding:16px;
  margin-bottom:22px;
  color:#fff;
  font-size:15px;
}

.enquiry-modal textarea{
  height:120px;
  resize:none;
}

.enquiry-modal ::placeholder{
  color:rgba(255,255,255,0.7);
}

.enquiry-modal .row{
  display:flex;
  gap:25px;
}

/* BUTTON */
.enquiry-modal button{
  background:#fff;
  color:#2f3fae;
  padding:14px 40px;
  border:none;
  font-weight:600;
  cursor:pointer;
  float:right;
}

/* DECORATION */
.enquiry-modal .decor-yellow{
  position:absolute;
  bottom:0;
  left:0;
  width:80px;
  height:80px;
  background:#f4c400;
}

.enquiry-modal .decor-red{
  position:absolute;
  bottom:80px;
  left:0;
  width:60px;
  height:60px;
  background:#B20B11;
}

/* MOBILE */
@media(max-width:768px){
  .enquiry-modal .enquiry-panel{
    width:100%;
    padding:40px 25px;
  }

  .enquiry-modal .row{
    flex-direction:column;
    gap:0;
  }

  .enquiry-modal .decor-yellow,
  .enquiry-modal .decor-red{
    display:none;
  }
}

.keynote-hero {
  position: relative;
  height: 100vh;
  background: url("../img/services/keynote-speaking.jpg") right center / cover no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 160px 60px 60px; /* balanced spacing */
  overflow: hidden;
}

/* Overlay */

/* CONTENT POSITIONING */
.keynote-content {
  position: relative;
  max-width: 580px;
  z-index: 2;
  margin-right:0px; /* ðŸ‘ˆ final left shift */
}

.keynote-content h1 {
  font-size: 57px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: 'Prata', serif;

  /* 3D Text Effect */
  text-shadow:
    1px 1px 0 #1d1d1f,
    2px 2px 0 #2a2a2a,
    3px 3px 0 #30302f,
    4px 4px 0 #484848,
    5px 5px 10px rgba(0,0,0,0.4);
}

.keynote-content strong {
  font-weight: 900;
}

/* BUTTON */
.keynote-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #b20b11;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .keynote-content {
    margin-right: 60px;
  }

  .keynote-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .keynote-hero {
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }

  .keynote-overlay {
    background: rgba(255,255,255,0.92);
  }

  .keynote-content {
    margin-right: 0;
    max-width: 100%;
  }

  .keynote-content h1 {
    font-size: 30px;
  }
}
.message-section {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f3; /* light off-white like image */
}

.message-top {
  font-size: 33px;
  font-family: "Roboto", Sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}

.message-main {
  font-family: prata;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #f4c400;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .message-top {
    font-size: 22px;
  }

  .message-main {
    font-size: 30px;
  }
}
.video-section {
  background: #ffffff;
  padding: 80px 60px;
}

.video-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.7fr 1.3fr;
  gap: 30px;
  align-items: stretch;
}

/* LEFT BIG VIDEO */
.video-big {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-big video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.video-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-small {
  width: 100%;
  height: 150px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-small iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .video-wrapper {
    grid-template-columns: 1fr;
  }

  .video-small {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 40px 20px;
  }
}
.testimonial-invite-section {
  background: #ebebeb;
  padding: 90px 60px;
}

.testimonial-invite-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.testimonials h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: black;
}

.testimonial-item {
  margin-bottom: 35px;
  text-align: left;
}

.testimonial-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 10px;
}

.testimonial-item .name {
  display: block;
  color: #B20B11;
  font-weight: 700;
}

.testimonial-item .designation {
  display: block;
  color: #B20B11;
  font-weight: 600;
}

/* RIGHT */
.invite-form h2 {
  font-size: 42px;
  margin-bottom: 35px;
  color: black;
}

.invite-form form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.invite-form input,
.invite-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #999;
  font-size: 15px;
  background: #f2f2f2;
  outline: none;
}

.invite-form textarea {
  min-height: 120px;
  resize: vertical;
}

.invite-form button {
  margin-top: 10px;
  background: #f4c400;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
}

.invite-form button:hover {
  background: #f4c400;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-invite-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .testimonial-invite-section {
    padding: 50px 20px;
  }

  .testimonials h2,
  .invite-form h2 {
    font-size: 32px;
  }
}


/* HERO */
.hero-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/psps.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */
.hero-banner::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0) 80%
  );

  z-index: 1;
}

/* HERO CONTENT */
.hero-box { 
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 100px 0px;
  color: #fff;
  max-width:980px;
}

/* TEXT */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-title strong {
  font-weight: 800;
}

.hero-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.hero-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-box {
    padding: 35px 25px;
  }

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

  .hero-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.hero-title,
.hero-subtitle,
.hero-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.hero-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */



/* HERO */
.scl-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/scl.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */
.scl-banner::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to left,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0) 80%
  );

  z-index: 1;
}

/* HERO CONTENT */
.scl-box { 
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 100px 0px;
  color: #fff;
  max: width 1080px;
}

/* TEXT */
.scl-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
  margin-left: 40%;
}

.scl-title strong {
  font-weight: 800;
}

.scl-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.scl-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.scl-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .scl-box {
    padding: 35px 25px;
  }

  .scl-title {
    font-size: 32px;
  }

  .scl-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.scl-title,
.scl-subtitle,
.scl-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.scl-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */


/* HERO */
.par-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/parenting.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */
.par-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* HERO CONTENT */
.par-box { 
  position: relative;
  z-index: 2;
  text-align:center;
  padding: 100px 0px;
  color: #fff;
  max-width: 1080px;
}

/* TEXT */
.par-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  text-transform: uppercase;
  color:#ffffff;

          /* text fill remove */
  -webkit-text-stroke: 1px #636363;  /* text border */
}
.par-title strong {
  font-weight: 800;
}

.par-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.par-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.par-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .par-box {
    padding: 35px 25px;
  }

  .par-title {
    font-size: 32px;
  }

  .par-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.par-title,
.par-subtitle,
.par-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.par-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */


/* HERO */
.gainhero-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/gainand.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */
.gainhero-banner::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0) 80%
  );

  z-index: 1;
}

/* HERO CONTENT */
.gainhero-box { 
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 100px 0px;
  color: #fff;
  max-width:980px;
}

/* TEXT */
.gainhero-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
}

.gainhero-title strong {
  font-weight: 800;
}

.gainhero-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.gainhero-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.gainhero-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .gainhero-box {
    padding: 35px 25px;
  }

  .gainhero-title {
    font-size: 32px;
  }

  .gainhero-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.gainhero-title,
.gainhero-subtitle,
.gainhero-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.gainhero-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */

/* HERO */
.hi-banner {
  min-height: 90vh;
    background: url("../img/services/hiimpact.jpg") right center / cover no-repeat;
}

.hi-box {
  /* background: rgb(0 0 0 / 14%); */
  padding: 142px 55px;
  /* max-width: 820px; */
  text-align: left;
  color: #fff;
}

/* TEXT */
.hi-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.hi-title strong {
  font-weight: 800;
}

.hi-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.hi-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.hi-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hi-box {
    padding: 35px 25px;
  }

  .hi-title {
    font-size: 32px;
  }

  .hi-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.hi-title,
.hi-subtitle,
.hi-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.hi-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}

/* end hi impact leadership */

/* UPCOMING EVENTS */
.upcoming-events {
  padding: 42px 0 0px;
  background: #ffffff;
}

.section-title {
  font-size: 58px;
  font-weight: 700;
  font-family: IBARRA REAL NOVA;
  padding-bottom: 0px;
  color: #424244;
}

.event-heading {
  font-size: 18px;
  font-weight: 600;
}

.event-text {
  font-size: 18px;
  margin-top: -12px;
  padding: 0px 10% 0px 10%;
  text-align: justify;
  font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
}

/* PROGRAM INFO */
.program-info {
  background: #f2f2f2;
  padding: 40px 0;
}

.program-title {
  font-size: 28px;
  font-weight: 400;
}

.program-highlight {
  font-size: 60px;
  font-weight: 800;
  color: #f4c400;
  font-family: prata;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .program-highlight {
    font-size: 28px;
  }
}
/* ===== SPEAKER SECTION (ISOLATED) ===== */
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

/* ===============================
   SECTION BACKGROUND (CINEMATIC)
================================= */
/* SECTION */
.speaker-wrap {
  width: 100%;
  padding: 60px 20px;
  position: relative;
}

/* CONTAINER */
.speaker-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
}

/* HEADING */
.speaker-title {
  font-family: 'Prata', serif;
  font-size: 48px;
  font-weight: 400;
  color: #b20b11;
  margin-bottom: 45px;
  position: relative;
  line-height: 1.2;
}

/* underline */
.speaker-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #b20b11;
}

/* LIST */
.speaker-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.speaker-list li {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  transition: 0.3s;
}

/* RED BULLET */
.speaker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: #b20b11;
  border-radius: 50%;
}

/* HOVER */
.speaker-list li:hover {
  transform: translateX(6px);
  color: #000;
}

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

@media (max-width: 992px){

  .speaker-container{
    padding: 0 30px;
  }

  .speaker-title{
    font-size: 40px;
  }

  .speaker-list li{
    font-size: 17px;
  }

}

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

@media (max-width: 768px){

  .speaker-wrap{
    padding: 50px 15px;
  }

  .speaker-container{
    padding: 0;
  }

  .speaker-title{
    font-size: 32px;
    text-align: center;
  }

  .speaker-title::after{
    left: 50%;
    transform: translateX(-50%);
  }

  .speaker-list li{
    font-size: 16px;
    line-height: 1.7;
  }

}

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

@media (max-width: 480px){

  .speaker-title{
    font-size: 26px;
  }

  .speaker-list li{
    font-size: 15px;
  }

}
/* ===== PUBLIC SPEAKING IMAGE SECTION (NO OVERLAP) ===== */

.skps-img-white {
  width: 100%;
  background-color: #ffffff !important;
  padding: 42px 0;
}

.skps-img-center {
  text-align: center;
}

.skps-img-center img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
/* ===== METHODOLOGY SECTION ===== */

.skps-methodology {
  background: #B20B11;
  margin-top: -60px;
  padding: 90px 20px;
  text-align: center;
}

.skps-methodology-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.skps-methodology-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
}

.skps-methodology-text span {
  text-decoration: underline;
  font-weight: 600;
}


/* ===== WHO SHOULD ATTEND SECTION ===== */

.skps-attend {
  background: #f2f2f2;
  padding: 90px 20px 110px;
  text-align: center;
}

.skps-attend-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
}

.skps-attend-text {
  max-width: 950px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: #000000;
   text-align: justify;
}

.skps-attend-text span {
  color: #B20B11;
  font-weight: 600;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .skps-methodology-title,
  .skps-attend-title {
    font-size: 32px;
  }

  .skps-methodology-text,
  .skps-attend-text {
    font-size: 16px;
  }
}
.know-more-wrap {
  padding: 70px 0;
  font-family: Arial, sans-serif;
}

.know-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 50px;
}

.know-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #ddd;
}

/* LEFT */
.know-left {
  width: 35%;
  background: #ffffff;
  padding-top: 30px;
}

.know-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.know-tabs li {
  padding: 20px 30px;
  font-size: 23px;
  color: #f4c400;
  font-weight: 600;
  cursor: pointer;
  font-family: prata;
}

/* ACTIVE TAB – IMAGE MATCH */
.know-tabs li.active {
  background: #dbdbdb;
  color: #000;
  font-weight: 700;
  border: 2px solid #d9d9d9;
  border-right: none;
  margin-left: 40px;
  position: relative;
  z-index: 2;
 
}

/* RIGHT */
.know-right {
  width: 65%;
  background: #dbdbdb;
  padding: 45px 55px;
  border-left: 2px solid #d9d9d9;
}

.know-right h3 {
  font-size: 34px;
  margin-bottom: 20px;
}

.know-right p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* TAB SWITCH */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .know-box {
    flex-direction: column;
  }

  .know-left,
  .know-right {
    width: 100%;
  }

  .know-tabs li.active {
    margin-left: 0;
    border-right: 2px solid #d9d9d9;
  }
}

.ps-testimonial {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: url("../img/services/7-1.jpg") right center / cover no-repeat;
}

/* overlay now FULL COVER */
.ps-testimonial-overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* content */
.ps-testimonial-content {
  max-width: 1100px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}


.ps-quote {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 35px;
}

.ps-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ps-designation {
  font-size: 16px;
  opacity: 0.9;
}

/* responsive */
@media (max-width: 768px) {
  .ps-quote {
    font-size: 20px;
  }

  .ps-testimonial {
    min-height: auto;
  }
}
.ps-investment {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.ps-investment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT */
.ps-investment-left {
  max-width: 650px;
}

.ps-investment-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

.ps-investment-left h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ps-investment-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ps-investment-left ul {
  padding-left: 18px;
  margin-bottom: 30px;
}

.ps-investment-left ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ENROLL BUTTON */
.ps-enroll-btn {
  display: inline-block;
  background: #3f5a93;
  color: #fff;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

/* RIGHT */
.ps-investment-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ps-btn {
  width: 320px;
  text-align: center;
  padding: 22px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.ps-btn.yellow {
  background: #f2a900;
}

.ps-btn.red {
  background: #B20B11;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ps-investment-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ps-investment-right {
    align-items: center;
  }

  .ps-btn {
    width: 100%;
    max-width: 320px;
  }
}
.ps-btn,
.ps-btn:hover {
  color: #ffffff !important;
  text-decoration: none;
}

/* optional: thoda smooth feel ke liye */
.ps-btn {
  transition: background 0.3s ease, transform 0.2s ease;
}

.ps-btn:hover {
  transform: translateY(-2px);
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Icon Style */
.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

/* Individual Colors */
.fb { background: #1877f2; }
.insta { background: radial-gradient(circle at 30% 110%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
  display: flex }
.yt { background: #ff0000; }
.linkedin { background: #0077b5; }
.pinterest { background: #e60023; }

/* Hover Effect */
.social-icon:hover {
  width: 55px;
  transition: 0.3s;
}

/* Attractive Floating Subscribe Button */
.subscribe-btn {
  position: fixed;
  right: 21px; /* 🔥 thoda side ke andar hidden */
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 22px 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 30px 30px 30px 30px;
  z-index: 9999;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.5);
  animation: pulseGlow 2s infinite;

  /* Vertical text */
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 🔥 Hover par slide out */
.subscribe-btn:hover {
  right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0 15px 35px rgba(255, 75, 43, 0.8);
}

/* Glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255, 75, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 75, 43, 0); }
}

.program-hero {
  position: relative;
  height: 100vh;
  background: url("../img/services/program.jpg") right center / cover no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 160px 60px 60px;
  overflow: hidden;
}

/* Right Side Overlay */
.program-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to left,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.0) 80%
  );

  z-index: 1;
}

/* CONTENT POSITIONING */
.program-content {
  position: relative;
  max-width: 580px;
  z-index: 2;
  margin-right:0px; /* ðŸ‘ˆ final left shift */
}

.program-content h1 {
  font-size:55px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 28px;
  font-family: 'Prata', serif;

   text-shadow:
    1px 1px 0 #1d1d1f,
    2px 2px 0 #2a2a2a,
    3px 3px 0 #30302f,
    4px 4px 0 #484848,
    5px 5px 10px rgba(0,0,0,0.4);

  /* 3D Text Effect */

}

.program-content strong {
  font-weight: 900;
}

/* BUTTON */
.program-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #B20B11;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .program-content {
    margin-right: 60px;
  }

  .program-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .programe-hero {
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }

  .program-overlay {
    background: rgba(255,255,255,0.92);
  }

  .program-content {
    margin-right: 0;
    max-width: 100%;
  }

  .program-content h1 {
    font-size: 30px;
  }
}

/* SECTION */
.programs-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #f8f8f8, #ececec);
}

.container {
  max-width: 1250px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: 2px;
  position: relative;
}

/* Stylish underline */
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #000, #777);
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* GRID */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Lift effect */
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.program-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Smooth zoom */
.program-card:hover img {
  transform: scale(1.15);
}

/* GLASS OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: all 0.4s ease;
}

.program-card:hover .overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.95)
  );
}

/* TEXT */
.overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.overlay p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Animated Link */
.overlay a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: 0.3s;
}

/* Underline animation */
.overlay a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.4s ease;
}

.overlay a:hover::after {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 42px;
  }
}
.pro-slider-section {
  padding: 100px 0;
  background: #eaeaea;
  overflow: hidden;
  text-align: center;
}

.pro-heading {
  font-size: 52px;
  margin-bottom: 60px;
  font-weight: 800;
  color: #f4c400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: parta;
}

.pro-slider {
  overflow: hidden;
  position: relative;
}

.pro-track {
  display: flex;
  gap: 40px;
  width: max-content;
}

.pro-card {
  width: 360px;
  height: 400px;
  background: #111;
  border-radius: 20px;
  padding: 30px;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 0 25px rgba(212,175,55,0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-card.active {
  transform: scale(1.1);
  box-shadow: 0 0 70px rgba(212,175,55,0.6);
  z-index: 2;
}

.text-card h4 {
  color: #f4c400;
  margin-top: 15px;
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cta-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.cta-container p {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.cta-container a {
  color: #f4c400; /* yellow color */
  text-decoration: none;
  font-weight: 600;
  position: relative;
  margin-left: 5px;
}

/* Stylish underline */
.cta-container a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #f4c400;
  transition: 0.3s ease;
}

/* Hover effect */
.cta-container a:hover {
  color: #f4c400;
}

.cta-container a:hover::after {
  height: 3px;
}
.shiv-btn-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Common Button Style */
.shiv-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
}

/* Yellow Button */
.shiv-yellow-btn {
  background: #f4c400;
  color: #000;
}

.shiv-yellow-btn:hover {
  background: #f4c400;
  transform: translateY(-3px);
}

/* Red Button */
.shiv-red-btn {
  background: #B20B11;
  color: #fff;
}

.shiv-red-btn:hover {
  background: ##B20B11;
  transform: translateY(-3px);
}
.skps-img-center {
  display: flex;
  justify-content: center;
}

.shiv-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;   /* image ke approx size ke according */
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.shiv-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.quote-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.quote-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.quote-image {
  flex: 1;
}

.quote-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: block;
}

.quote-content {
  flex: 1;
}

.quote-content h2 {
  font-size: 34px;
  line-height: 1.6;
  font-weight: 600;
  color: #000;
  text-align: justify;
}

.author {
  margin-top: 30px;
  font-size: 28px;
  font-style: italic;
  color: #8b0000;
  text-align: end;
}
.clg {
  background: #f4f4f4;
  padding: 100px 0;
}

.clg-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.clg-left,
.clg-right {
  flex: 1;
}

.clg h2 {
  font-size: 56px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000;
}

.clg ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clg ul li {
  font-size: 18px;
  margin-bottom: 8px;
  color: #000;
}

.clg-topics {
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .clg-container {
    flex-direction: column;
    gap: 60px;
  }

  .clg-topics {
    flex-direction: column;
    gap: 40px;
  }

  .clg h2 {
    font-size: 38px;
  }

  .clg ul li {
    font-size: 18px;
  }
}

.parenting {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background: radial-gradient(circle at center, #0b1b2b 0%, #000814 80%);
  overflow: hidden;
}

.parenting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.parenting-inner {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

.parenting-title {
  font-size: 64px;
  color: #f4c400;
  margin-bottom: 50px;
  font-weight: 600;
}

.parenting-wrapper {
  overflow: hidden;
}

.parenting-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(.77,0,.18,1);
}

.parenting-slide {
  min-width: 100%;
}

.parenting-text {
  font-size: 28px;
  font-style: italic;
  color: #e5e5e5;
  margin-bottom: 40px;
  line-height: 1.6;
}

.parenting-slide h4 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 500;
}

.parenting-slide span {
  font-size: 17px;
  opacity: 0.8;
}

.parenting-dots {
  margin-top: 40px;
}

.parenting-dots span {
  height: 9px;
  width: 9px;
  margin: 0 6px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
}

.parenting-dots span.active {
  background: #000;
  opacity: 1;
}

@media (max-width:768px) {
  .parenting-title { font-size: 40px; }
  .parenting-text { font-size: 18px; }
}

.banner-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

/* Image Layer */
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Text Layer */
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.banner-title {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.banner-title strong {
  display: block;
  font-size: 40px;
  font-weight: 600;
}

.hi-impact {
  background: #eaeaea;
  padding: 90px 20px;
}

.hi-impact-container {
  max-width: 1100px;
  margin: auto;
}

.hi-impact-title {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

/* Form Layout */
.hi-row {
  display: flex;
  gap: 25px;
}

.hi-field {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.hi-field.full {
  width: 100%;
}

.hi-field input,
.hi-field textarea {
  width: 100%;
  padding: 18px 15px;
  border: 1px solid #999;
  background: transparent;
  font-size: 16px;
  outline: none;
}

.hi-field textarea {
  min-height: 150px;
  resize: vertical;
}

/* Floating Label */
.hi-field label {
  position: absolute;
  left: 15px;
  top: 18px;
  color: #777;
  font-size: 15px;
  pointer-events: none;
  transition: 0.3s ease;
  background: #f3f3f3;
  padding: 0 5px;
}

.hi-field input:focus + label,
.hi-field input:valid + label,
.hi-field textarea:focus + label,
.hi-field textarea:valid + label {
  top: -10px;
  font-size: 12px;
  color: #000;
}

.hi-field input:focus,
.hi-field textarea:focus {
  border-color: #000;
}

/* Checkbox */
.hi-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.hi-checkbox a {
  color: #000;
  text-decoration: underline;
}

/* Button */
.hi-btn {
  width: 100%;
  padding: 18px;
  border: none;
  background: #f4c400;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hi-btn:hover {
  background: #f4c400;
}

/* Responsive */
@media (max-width: 768px) {
  .hi-row {
    flex-direction: column;
  }

  .hi-impact-title {
    font-size: 36px;
  }
}

.team-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.team-section .row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-col {
  flex: 1 1 45%;
  max-width: 500px;
}

.team-card {
  background: #fff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-card img {
  width: 400px;      /* Image bigger */
  height: 400px;     /* Same height for square */
  border-radius: 15px; /* 0 karoge to perfect sharp square ho jayega */
  object-fit: cover;
  margin-bottom: 25px;
  
}

.team-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: prata;
  color:#f4c400;
}

.designation {
  display: block;
  font-size: 24px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
}

.team-card p {
  font-size: 15px;
  text-align:justify;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .team-col {
    flex: 1 1 100%;
  }
}
.prmedia {
  padding: 100px 0px 50px 0px;
  background: linear-gradient(135deg, #dbdbdb, #dbdbdb, #dbdbdb);
}

.prmedia-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.prmedia-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 0px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.prmedia-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

.prmedia-box h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.prmedia-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
}

.prmedia-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .prmedia-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prmedia-container {
    grid-template-columns: 1fr;
  }
}

.test-hero {
  position: relative;
  height: 60vh;
  background: url("../img/services/Cardinal.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  padding: 60px;              /* balanced spacing */
  overflow: hidden;
  text-align: center;         /* text center alignment */
}

/* Overlay */
.test-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* optional dark overlay */
}

/* CONTENT POSITIONING */
.test-content {
  position: relative;
  
  z-index: 2;
  margin: 0 auto;
}

.test-content h1 {
  font-size: 55px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: 'Prata', serif;
}

.test-content strong {
  font-weight: 900;
}

.book-hero {
  position: relative;
  height: 60vh;
  background: url("../img/services/backbook.jpeg") center center / cover no-repeat;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  padding: 60px;              /* balanced spacing */
  overflow: hidden;
  text-align: center;         /* text center alignment */
}

/* Overlay */
.book-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 35, 0.526); /* optional dark overlay */
}

/* CONTENT POSITIONING */
.book-content {
  position: relative;
  
  z-index: 2;
  margin: 0 auto;
}

.book-content h1 {
  font-size: 55px;
  line-height: 1.18;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: 'Prata', serif;
}

.book-content strong {
  font-weight: 900;
}

/* ===== SECTION ===== */
/* ===== SECTION ===== */
.author-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: #f5f5f5;
}

/* Background Image */
.author-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/services/backbook.jpg") center center / cover no-repeat;
  z-index: 0;
}

/* TOP TO BOTTOM GRADIENT FADE */
.author-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #f5f5f5 20%,        /* 👈 top fully hidden */
    rgba(245,245,245,0.9) 50%,
    rgba(245,245,245,0.6) 70%,
    rgba(245,245,245,0.2) 100%,
    rgba(245,245,245,0) 100%   /* 👈 bottom fully visible */
  );
  z-index: 1;
}

/* Content Above Everything */
.author-section .container {
  position: relative;
  z-index: 2;
}
/* ===== HEADING ===== */
.author-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.subtitle {
  font-size: 20px;
  color: #777;
  margin-bottom: 70px;
}

/* ===== BOOKS WRAPPER ===== */
.books-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  flex-wrap: wrap;
}

/* ===== BOOK CARD ===== */
.book-card {
  transition: all 0.4s ease;
  cursor: pointer;
}

.book-card img {
  width: 260px;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.book-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
}

/* ===== BUTTON ===== */
.btn-wrapper {
  margin-top: 70px;
}

.all-books-btn {
  display: inline-block;
  padding: 14px 45px;
  border: 2px solid #f4c400;
  background: #f4c400;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.all-books-btn:hover {
  background: #f4c400;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .books-wrapper {
    gap: 50px;
  }

  .author-section h2 {
    font-size: 36px;
  }

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

@media (max-width: 600px) {
  .books-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .book-card img {
    width: 220px;
  }
}

.Merchandise-section{
background:#ebe6e1;
padding:120px 20px;
font-family:Poppins,sans-serif;
}

.Merchandise-container{
max-width:1300px;
margin:auto;
}

/* heading */

.Merchandise-heading{
text-align:center;
margin-bottom:80px;
}

.Merchandise-sub{
letter-spacing:6px;
font-size:13px;
color:#777;
margin-bottom:10px;
}

.Merchandise-title{
font-size:58px;
font-weight:700;
letter-spacing:6px;
}

.Merchandise-title span{
display:inline-block;
transition:.35s;
}

.Merchandise-title span:hover{
transform:translateY(-10px);
color:#000;
}

.Merchandise-divider{
width:120px;
height:2px;
background:#000;
margin:20px auto 0;
}

/* grid */

.Merchandise-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
grid-auto-rows:260px;
gap:24px;
}

/* card */

.Merchandise-card{
position:relative;
overflow:hidden;
border-radius:12px;
cursor:pointer;
transition:.4s;
}

/* floating hover */

.Merchandise-card:hover{
transform:translateY(-12px) scale(1.04);
box-shadow:0 20px 40px rgba(0,0,0,.2);
}

/* image */

.Merchandise-card img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}

.Merchandise-card:hover img{
transform:scale(1.15);
}

/* overlay */

.Merchandise-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.1));
}

/* glow hover */

.Merchandise-card::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:60%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,.5),transparent);
transform:skewX(-25deg);
transition:1s;
z-index:3;
}

.Merchandise-card:hover::before{
left:130%;
}

/* text */

.Merchandise-overlay{
position:absolute;
bottom:30px;
left:30px;
color:#fff;
z-index:4;
transform:translateY(20px);
transition:.5s;
}

.Merchandise-card:hover .Merchandise-overlay{
transform:translateY(0);
}

.Merchandise-overlay h3{
font-size:28px;
margin-bottom:6px;
}

.Merchandise-overlay p{
font-size:12px;
letter-spacing:3px;
}

/* layout */

.Merchandise-large{
grid-row:span 2;
}

.Merchandise-wide{
grid-column:span 2;
}

/* responsive */

@media(max-width:1000px){

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

.Merchandise-large{
grid-row:auto;
}

.Merchandise-wide{
grid-column:auto;
}

}

@media(max-width:600px){

.Merchandise-title{
font-size:36px;
}

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

}


/* Academy page css start */

/* HERO */
.acd-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/acdshiv.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */
.acd-banner::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0) 80%
  );

  z-index: 1;
}

/* HERO CONTENT */
.acd-box { 
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 100px 0px;
  color: #fff;
  max-width:980px;
  margin-left: 50% !important;
}

/* TEXT */
.acd-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
}

.acd-title strong {
  font-weight: 800;
}

.acd-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.acd-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.acd-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .acd-box {
    padding: 35px 25px;
  }

  .acd-title {
    font-size: 32px;
  }

  .acd-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.acd-title,
.acd-subtitle,
.acd-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.acd-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */


/* Academy page css start */

/* HERO */
.community-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/services/com.jpg") right center / cover no-repeat;
  overflow: hidden;
}

/* LEFT GRADIENT OVERLAY */




/* HERO CONTENT */
.community-box { 
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 100px 0px;
  color: #fff;
  max-width:980px;
  margin-left: 50% !important;
}

/* TEXT */
.community-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
}

.community-title strong {
  font-weight: 800;
}

.community-subtitle {
  font-size: 46px;
  font-weight: 600;
  margin-top: 15px;
}

.community-tagline {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 800;
  margin-top: 8px;
}

/* BADGE */
.community-badge {
  display: inline-block;
 
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .community-box {
    padding: 35px 25px;
  }

  .community-title {
    font-size: 32px;
  }

  .community-subtitle {
    font-size: 20px;
  }
}
/* TEXT SHADOW */
.community-title,
.community-subtitle,
.community-tagline {
  /*text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.85);*/
}

/* thoda strong shadow for main heading */
.community-title strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
}


/* start hi impact leadership */

.inshiv{
padding:100px 20px;
background:linear-gradient(135deg,#f7f7f7,#ffffff);
font-family:'Poppins',sans-serif;
}

/* heading */

.inshiv-title{
text-align:center;
margin-bottom:70px;
}

.inshiv-title h2{
font-size:42px;
font-weight:700;
color:#111;
margin-bottom:10px;
}

.inshiv-title p{
color:#666;
font-size:16px;
}

/* grid */

.inshiv-container{
max-width:1300px;
margin:auto;
columns:3 320px;
column-gap:35px;
}

/* card */

.inshiv-item{
display:inline-block;
width:100%;
margin-bottom:35px;
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
padding:32px 28px;
border-radius:14px;
position:relative;
transition:all .4s ease;
border:1px solid rgba(0,0,0,0.06);
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* gradient border hover */

.inshiv-item:after{
content:"";
position:absolute;
inset:0;
border-radius:14px;
padding:1px;
background:linear-gradient(135deg,#c40000,#ff6a00);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
mask-composite:exclude;
opacity:0;
transition:.4s;
}

.inshiv-item:hover:after{
opacity:1;
}

/* hover lift */

.inshiv-item:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* quote icon */

.inshiv-item:before{
content:"“";
position:absolute;
top:-25px;
left:20px;
font-size:80px;
color:#c40000;
opacity:.15;
font-family:Georgia,serif;
}

/* text */

.inshiv-text{
font-size:15px;
line-height:1.8;
color:#444;
margin-bottom:20px;
}

/* name */

.inshiv-name{
font-size:17px;
font-weight:700;
color:#c40000;
margin:0;
transition:.3s;
}

.inshiv-item:hover .inshiv-name{
color:#000;
}

/* role */

.inshiv-role{
display:block;
font-size:14px;
color:#666;
margin-top:4px;
}

/* responsive */

@media(max-width:900px){
.inshiv-container{
columns:2 280px;
}
}

@media(max-width:500px){
.inshiv-container{
columns:1;
}

.inshiv-title h2{
font-size:32px;
}
}


.ultra-contact{

padding:120px 20px;

font-family:Poppins,sans-serif;

background:
url("https://www.transparenttextures.com/patterns/cubes.png"),
linear-gradient(135deg,#f5f7fb,#eef3ff);

}



/* top heading */

.contact-top{

text-align:center;

max-width:900px;

margin:auto;

margin-bottom:70px;

}

.contact-top h2{

font-size:42px;

font-weight:700;

margin-bottom:10px;

}

.contact-top p{

color:#666;

margin-bottom:20px;

}

.contact-main-info{

display:flex;

gap:25px;

justify-content:center;

flex-wrap:wrap;

font-weight:500;

color:#444;

}



/* office cards */

.contact-grid{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-bottom:90px;

}



.contact-card{

height:260px;

border-radius:20px;

overflow:hidden;

background-size:cover;

background-position:center;

position:relative;

transition:.5s;

box-shadow:0 25px 60px rgba(0,0,0,0.2);

}



.contact-card:hover{

transform:translateY(-10px) scale(1.03);

}



.card-overlay{

position:absolute;

inset:0;

padding:35px;

display:flex;

flex-direction:column;

justify-content:center;

background:rgba(0,0,0,.45);

color:#fff;

backdrop-filter:blur(6px);

}



.card-overlay h3{

font-size:22px;

margin-bottom:10px;

}



.india{

background-image:url("https://images.unsplash.com/photo-1587474260584-136574528ed5");

}



.usa{

background-image:url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29");

}



.singapore{

background-image:url("https://images.unsplash.com/photo-1508962914676-134849a727f0");

}



/* form */

.form-wrapper{

max-width:850px;

margin:auto;

background:#fff;

padding:60px;

border-radius:18px;

box-shadow:0 30px 80px rgba(0,0,0,.15);

}



.form-wrapper h2{

text-align:center;

margin-bottom:25px;

font-size:34px;

}



.premium-form input,

.premium-form textarea{

width:100%;

padding:16px;

border-radius:8px;

border:1px solid #ddd;

margin-bottom:16px;

font-size:15px;

}



.premium-form textarea{

height:140px;

resize:none;

}



.check{

font-size:13px;

color:#666;

display:block;

margin-bottom:20px;

}



.premium-form button{

width:100%;

padding:15px;

background:linear-gradient(90deg,#f4c400,#f4c400);

border:none;

color:#fff;

font-size:16px;

border-radius:8px;

cursor:pointer;

transition:.4s;

}



.premium-form button:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(0,0,0,.25);

}



/* responsive */

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

.form-wrapper{

padding:40px;

}

}


.award-calendar{

background:linear-gradient(
180deg,
#000000 0%,
#1a0000 10%,
#ffffff 55%,
#ffffff 65%
);

padding:120px 20px 80px;
font-family:system-ui;

}

/* hero */

.calendar-v5{
padding:100px 20px;
background:linear-gradient(135deg,#eef2ff,#f8fafc);
font-family:system-ui;
}

.calv5-head{
text-align:center;
margin-bottom:40px;
}

.calv5-head h2{
font-size:42px;
font-weight:800;
}

.calv5-head p{
color:#666;
}

.calv5-nav{
text-align:center;
margin-bottom:30px;
}

.calv5-nav button{
background:#111;
color:white;
border:none;
padding:10px 18px;
margin:0 6px;
border-radius:6px;
cursor:pointer;
}

.calv5-slider{
max-width:1200px;
margin:auto;
}

.month-box{
background:white;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
overflow:hidden;
transition:.3s;
}

.current-month{
border:3px solid #ff4d4d;
transform:scale(1.05);
box-shadow:0 20px 50px rgba(255,77,77,0.3);
}

.month-title{
background:#111;
color:white;
text-align:center;
padding:12px;
font-weight:600;
}

.days,
.dates{
display:grid;
grid-template-columns:repeat(7,1fr);
text-align:center;
}

.days div{
background:#f3f3f3;
padding:8px;
font-weight:600;
font-size:13px;
}

.date{
height:85px;
border:1px solid #eee;
padding:4px;
position:relative;
font-size:12px;
}

.today{
background:#ff4d4d;
color:white;
padding:2px 6px;
border-radius:4px;
}

.event{
position:absolute;
bottom:5px;
left:5px;
right:5px;
padding:3px;
font-size:10px;
border-radius:4px;
color:white;
cursor:pointer;
}

.event-tooltip{
position:absolute;
background:white;
padding:12px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
font-size:13px;
display:none;
max-width:220px;
z-index:999;
}

/* PRODUCT */

.lux-product{

padding:120px 20px;

}

.lux-container{

max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;

}

/* gallery */

.lux-main{

width:100%;
border-radius:16px;
box-shadow:0 40px 120px rgba(0,0,0,.15);

}

.lux-thumbs{

display:flex;
gap:12px;
margin-top:15px;

}

.lux-thumbs img{

width:70px;
border-radius:6px;
cursor:pointer;
transition:.3s;

}

.lux-thumbs img:hover{

transform:scale(1.08);

}

/* info */

.lux-title{

font-size:52px;
font-weight:800;
line-height:1.2;

}

.lux-title span{

color:#B20B11;

}

.lux-price{

font-size:34px;
color:#B20B11;
font-weight:700;
margin:15px 0;

}

.lux-desc{

color:#555;
margin-bottom:30px;
line-height:1.7;

}

/* option */

.lux-option{

margin-bottom:25px;

}

.opt-title{

font-weight:600;
margin-bottom:10px;

}

/* colors */

.lux-colors{

display:flex;
gap:15px;

}

.color{

width:32px;
height:32px;
border-radius:50%;
background:var(--c);
cursor:pointer;
position:relative;

}

.color.active::after{

content:"";
position:absolute;
inset:-4px;
border:2px solid #B20B11;
border-radius:50%;

}

/* sizes */

.lux-sizes{

display:flex;
gap:12px;

}

.size{

padding:10px 18px;
border-radius:30px;
background:#f2f2f2;
cursor:pointer;
font-weight:600;

}

.size.active{

background:#000;
color:#fff;

}

/* qty */

.lux-qty{

display:flex;
margin-bottom:25px;

}

.lux-qty button{

width:40px;
height:40px;
border:none;
background:#000;
color:#fff;
cursor:pointer;

}

.lux-qty input{

width:60px;
text-align:center;
border:1px solid #ddd;

}

/* button */

.lux-buy{

background:#000;
color:#fff;
padding:16px 40px;
font-size:16px;
border:none;
cursor:pointer;
border-radius:40px;
transition:.3s;

}

.lux-buy:hover{

background:#B20B11;
transform:translateY(-2px);

}

/* RELATED */

.lux-related{

padding:100px 20px;
background:#fafafa;

}

.lux-related h2{

text-align:center;
font-size:38px;
margin-bottom:50px;

}

.lux-grid{

max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.lux-card{

background:#fff;
border-radius:16px;
padding:20px;
text-align:center;
box-shadow:0 20px 60px rgba(0,0,0,.08);
transition:.35s;

}

.lux-card:hover{

transform:translateY(-10px);

}

.card-img{

overflow:hidden;
border-radius:12px;

}

.card-img img{

width:100%;
transition:.4s;

}

.lux-card:hover img{

transform:scale(1.1);

}

.card-price{

color:#B20B11;
font-weight:700;
margin:10px 0;

}

.lux-card a{

display:inline-block;
background:#000;
color:#fff;
padding:8px 16px;
border-radius:30px;
text-decoration:none;

}

.lux-card a:hover{

background:#B20B11;

}

/* Shopify Zoom Effect */

.lux-main{

width:100%;
border-radius:16px;
box-shadow:0 40px 120px rgba(0,0,0,.15);
transition:transform .4s ease;

cursor:zoom-in;

}

.lux-gallery{

overflow:hidden;

}

.lux-main:hover{

transform:scale(1.4);

}

/* thumbnail active */

.lux-thumbs img{

width:70px;
border-radius:6px;
cursor:pointer;
transition:.3s;
border:2px solid transparent;

}

.lux-thumbs img.active{

border-color:#B20B11;

}

.lux-thumbs img:hover{

transform:scale(1.1);

}


.premium-collection{

padding:90px 20px;
background:#f6f6f6;
font-family:system-ui;

}

/* heading */

.collection-header{

text-align:center;
margin-bottom:60px;

}

.collection-header h2{

font-size:38px;
font-weight:700;
color:#000;

}

.collection-header p{

color:#777;
margin-top:8px;

}

/* grid */

.product-grid{

max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

/* card */

.product-card{

background:#fff;
border-radius:8px;
overflow:hidden;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.product-card:hover{

transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.12);

}

/* image */

.product-img{

position:relative;
overflow:hidden;

}

.product-img img{

width:100%;
display:block;
transition:.5s;

}

.img-hover{

position:absolute;
top:0;
left:0;
opacity:0;

}

.product-card:hover .img-hover{

opacity:1;

}

.product-card:hover .img-main{

opacity:0;

}

/* actions */

.product-actions{

position:absolute;
top:12px;
right:12px;
display:flex;
flex-direction:column;
gap:10px;

}

.product-actions span{

width:36px;
height:36px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 6px 14px rgba(0,0,0,.15);
cursor:pointer;
transition:.3s;

}

.product-actions span:hover{

background:#d60000;
color:white;

}

/* add cart */

.add-cart{

position:absolute;
bottom:-50px;
left:0;
width:100%;
background:#000;
color:white;
border:none;
padding:12px;
font-size:14px;
transition:.4s;
cursor:pointer;

}

.product-card:hover .add-cart{

bottom:0;

}

.add-cart:hover{

background:#d60000;

}

/* info */

.product-info{

padding:16px;

}

.brand{

font-size:13px;
color:#777;

}

.title{

font-size:15px;
margin:4px 0;
color:#000;

}

.price{

font-weight:600;
color:#000;

}


.ba-section{
padding:100px 5%;
background:#000;
color:#fff;
overflow:hidden;
}

.ba-header{
text-align:center;
margin-bottom:70px;
}

.ba-title{
font-size:48px;
font-weight:700;
}

.ba-subtitle{
color:#aaa;
font-size:18px;
}

/* WALL */

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

.ba-row{
overflow:hidden;
}

.ba-track{
display:flex;
gap:15px;
width:max-content;
animation:ba-scroll-left 65s linear infinite;
}

.ba-row:hover .ba-track{
animation-play-state:paused;
}

.ba-reverse .ba-track{
animation:ba-scroll-right 65s linear infinite;
}

/* CARD */

.ba-card{
position:relative;
width:242px;
height:150px;
border-radius:14px;
overflow:hidden;
flex-shrink:0;
transition:transform .4s;
}

.ba-card:hover{
transform:scale(1.07);
}

.ba-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.ba-gradient{
position:absolute;
bottom:0;
left:0;
right:0;
height:60%;
background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
}

.ba-card span{
position:absolute;
bottom:15px;
left:15px;
right:15px;
font-size:16px;
}

/* ANIMATION */

@keyframes ba-scroll-left{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

@keyframes ba-scroll-right{
0%{transform:translateX(-50%)}
100%{transform:translateX(0)}
}

/* RESPONSIVE */

@media(max-width:1024px){
.ba-card{
width:260px;
height:170px;
}
}

@media(max-width:768px){
.ba-card{
width:220px;
height:150px;
}
}

@media(max-width:480px){
.ba-card{
width:180px;
height:130px;
}
}

.hilx-article{
font-family:system-ui;
background:#fff; 
margin-top: 0px !important;
color:#111;
}

/* WIDTH INCREASE */

.hilx-container{
max-width:1000px;
margin:auto;
padding:70px 20px;
}
/* TOP PREMIUM BAR */


.hilx-topbar{
width:100%;
height:92px;
background:linear-gradient(
to bottom,
#000,
#111,
#222,
transparent
);
box-shadow:0 6px 18px rgba(0,0,0,0.25);
}
/* MAIN IMAGE */

.hilx-main-img{
width:100%;
border-radius:8px;
margin-bottom:35px;
}

/* IMAGE HOVER */

.hilx-img{
width:100%;
border-radius:8px;
margin:25px 0;
transition:.5s;
}

.hilx-img:hover{
transform:scale(1.04);
}

/* TITLE */

.hilx-title{
font-size:38px;
font-weight:800;
margin-bottom:25px;
}

/* STYLISH HEADING */

.hilx-heading{
font-size:42px;
margin:70px 0 20px;
font-weight:900;
position:relative;
}

.hilx-heading::after{
content:"";
width:80px;
height:4px;
background:linear-gradient(90deg,#ff9800,#ffcc00);
display:block;
margin-top:10px;
border-radius:10px;
}

/* TEXT */

.hilx-container p{
font-size:18px;
line-height:1.8;
color:#333;
margin-bottom:22px;
}

/* LIST */

ul{
padding-left:22px;
margin-bottom:20px;
}

li{
margin-bottom:8px;
}

/* QUOTE */

blockquote{
border-left:4px solid #ff9800;
padding-left:15px;
margin:25px 0;
font-style:italic;
color:#444;
}

/* PROGRESS BAR */

.hilx-progress{
position:fixed;
top:0;
left:0;
height:3px;
background:#ff9800;
width:0;
z-index:999;
}

/* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}




/* SECTION */

.pgc-marquee{
width:100%;
overflow:hidden;
padding:0px 0;
background:#fff;
}

/* TRACK */

.pgc-track{
display:flex;
align-items:center;
gap:70px;
width:max-content;
}

/* LOGO */

.pgc-logo img{
height:130px;
width:auto;
opacity:.85;
transition:all .65s ease;
}

/* HOVER */

.pgc-logo img:hover{
height:90px;
opacity:1;
transform:scale(1.05);
}

/* LEFT MOVE */

.pgc-left .pgc-track{
animation:pgcScrollLeft 70s linear infinite;
}

/* RIGHT MOVE */

.pgc-right .pgc-track{
animation:pgcScrollRight 70s linear infinite;
}

/* ANIMATION */

@keyframes pgcScrollLeft{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

@keyframes pgcScrollRight{
0%{
transform:translateX(-50%);
}
100%{
transform:translateX(0);
}
}

/* MOBILE */

@media(max-width:768px){

.pgc-logo img{
height:60px;
}

.pgc-logo img:hover{
height:70px;
}

.pgc-track{
gap:40px;
}

}

.premium-policy{

padding:100px 20px;

background:
radial-gradient(circle at 20% 20%, #1f2937, transparent),
radial-gradient(circle at 80% 60%, #111827, transparent),
#0f172a;

font-family: 'Inter', sans-serif;

}


.policy-wrapper{

max-width:1200px;
margin:auto;

}


.policy-heading{

text-align:center;
margin-bottom:70px;

}

.policy-heading h2{

font-size:46px;
font-weight:700;
color:#fff;
letter-spacing:1px;
margin-bottom:10px;

}

.policy-heading p{

color:#9ca3af;
font-size:18px;

}


/* POLICY BOX */

.policy-box{

background:rgba(255,255,255,0.04);

backdrop-filter:blur(10px);

border-radius:18px;

padding:45px;

margin-bottom:45px;

border:1px solid rgba(255,255,255,0.06);

transition:0.4s;

position:relative;

overflow:hidden;

}


.policy-box:hover{

transform:translateY(-8px);

box-shadow:0 30px 80px rgba(0,0,0,0.5);

}


/* glowing border */

.policy-box::before{

content:"";

position:absolute;

top:-2px;
left:-2px;

right:-2px;
bottom:-2px;

background:linear-gradient(120deg,#facc15,#f59e0b,#facc15);

z-index:-1;

opacity:0;

transition:.4s;

border-radius:20px;

}

.policy-box:hover::before{

opacity:.2;

}


.policy-box h3{

font-size:28px;
color:#facc15;
margin-bottom:20px;

}

.policy-intro{

color:#cbd5e1;
margin-bottom:30px;
line-height:1.7;

}


/* POLICY LIST */

.policy-list{

display:grid;

gap:25px;

}


.policy-item{

display:flex;

gap:20px;

align-items:flex-start;

}


.policy-item span{

min-width:45px;
height:45px;

display:flex;

align-items:center;
justify-content:center;

border-radius:50%;

background:linear-gradient(135deg,#facc15,#f59e0b);

color:#111;

font-weight:700;

}


.policy-item h4{

color:#fff;
font-size:18px;
margin-bottom:6px;

}


.policy-item p{

color:#cbd5e1;
line-height:1.6;

}


.policy-note{

margin-top:25px;

color:#9ca3af;

font-style:italic;

}


/* RESPONSIVE */

@media(max-width:768px){

.policy-heading h2{
font-size:34px;
}

.policy-box{
padding:30px;
}

.policy-item{
flex-direction:row;
}

}

.premium-privacy{

padding:100px 20px;

background:
radial-gradient(circle at 20% 20%, #1f2937, transparent),
radial-gradient(circle at 80% 60%, #111827, transparent),
#0f172a;

font-family:'Inter',sans-serif;

}


.privacy-wrapper{

max-width:1100px;
margin:auto;

}


.privacy-heading{

text-align:center;
margin-bottom:70px;

}

.privacy-heading h2{

font-size:44px;
color:#fff;
margin-bottom:15px;

}

.privacy-heading p{

color:#9ca3af;
font-size:18px;

}


/* POLICY BOX */

.privacy-box{

background:rgba(255,255,255,0.04);

backdrop-filter:blur(10px);

border-radius:16px;

padding:40px;

margin-bottom:30px;

border:1px solid rgba(255,255,255,0.05);

transition:0.4s;

}


.privacy-box:hover{

transform:translateY(-6px);

box-shadow:0 25px 70px rgba(0,0,0,0.5);

}


.privacy-box h3{

color:#facc15;

font-size:24px;

margin-bottom:15px;

}


.privacy-box p{

color:#cbd5e1;

line-height:1.7;

margin-bottom:10px;

}


.privacy-box ul{

padding-left:18px;

}

.privacy-box li{

color:#cbd5e1;

margin-bottom:8px;

}


.privacy-note{

text-align:center;

color:#9ca3af;

margin-top:40px;

font-style:italic;

}


/* MOBILE */

@media(max-width:768px){

.privacy-heading h2{
font-size:32px;
}

.privacy-box{
padding:25px;
}

}


.premium-terms{

padding:100px 20px;

background:
radial-gradient(circle at 20% 20%, #1f2937, transparent),
radial-gradient(circle at 80% 60%, #111827, transparent),
#0f172a;

font-family:'Inter',sans-serif;

}


.terms-wrapper{

max-width:1000px;
margin:auto;

}


.terms-heading{

text-align:center;
margin-bottom:60px;

}

.terms-heading h2{

font-size:44px;
color:#fff;
margin-bottom:10px;

}

.terms-heading p{

color:#9ca3af;
font-size:18px;

}


/* TERMS BOX */

.terms-box{

background:rgba(255,255,255,0.04);

backdrop-filter:blur(10px);

border-radius:18px;

padding:45px;

border:1px solid rgba(255,255,255,0.05);

}


/* TERMS ITEM */

.terms-item{

display:flex;

gap:20px;

margin-bottom:30px;

align-items:flex-start;

}


.terms-item span{

min-width:45px;
height:45px;

display:flex;

align-items:center;
justify-content:center;

border-radius:50%;

background:linear-gradient(135deg,#facc15,#f59e0b);

color:#111;

font-weight:700;

}


.terms-item h3{

color:#fff;

font-size:20px;

margin-bottom:6px;

}


.terms-item p{

color:#cbd5e1;

line-height:1.7;

}


.terms-note{

margin-top:30px;

text-align:center;

color:#9ca3af;

font-style:italic;

}


/* MOBILE */

@media(max-width:768px){

.terms-heading h2{
font-size:32px;
}

.terms-box{
padding:25px;
}

}


.premium-shipping-policy{

padding:120px 20px;

background:
radial-gradient(circle at 10% 20%, #1f2937, transparent),
radial-gradient(circle at 80% 80%, #111827, transparent),
#0f172a;

font-family:'Inter',sans-serif;

}


/* container */

.shipping-wrap{

max-width:1100px;
margin:auto;

}


/* heading */

.shipping-title{

text-align:center;
margin-bottom:80px;

}

.shipping-title h2{

font-size:48px;

background:linear-gradient(90deg,#facc15,#f59e0b);

-webkit-background-clip:text;
color:transparent;

margin-bottom:15px;

}

.shipping-title p{

color:#9ca3af;

max-width:750px;

margin:auto;

line-height:1.7;

}


/* timeline */

.shipping-timeline{

position:relative;

padding-left:40px;

}


/* vertical line */

.shipping-timeline::before{

content:"";

position:absolute;

left:12px;

top:0;

bottom:0;

width:2px;

background:linear-gradient(#facc15,#f59e0b);

}


/* card */

.shipping-card{

display:flex;

gap:20px;

margin-bottom:40px;

background:rgba(255,255,255,0.04);

backdrop-filter:blur(10px);

padding:30px;

border-radius:14px;

border:1px solid rgba(255,255,255,0.05);

transition:0.4s;

}


.shipping-card:hover{

transform:translateY(-6px);

box-shadow:0 25px 60px rgba(0,0,0,0.6);

}


/* number */

.ship-number{

min-width:44px;
height:44px;

border-radius:50%;

display:flex;

align-items:center;
justify-content:center;

font-weight:700;

background:linear-gradient(135deg,#facc15,#f59e0b);

color:#111;

}


/* content */

.ship-content h3{

color:#fff;

font-size:20px;

margin-bottom:8px;

}


.ship-content p{

color:#cbd5e1;

line-height:1.7;

margin-bottom:6px;

}


.shipping-footer-note{

text-align:center;

margin-top:50px;

color:#9ca3af;

font-style:italic;

}


/* responsive */

@media(max-width:768px){

.shipping-title h2{
font-size:34px;
}

.shipping-card{
flex-direction:column;
}

.shipping-timeline{
padding-left:0;
}

.shipping-timeline::before{
display:none;
}

}