
/*******************************************************/
/************ REMOVE GLOBAL TEXT STROKE ****************/
/*******************************************************/

/* Kill text stroke everywhere */
* {
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
}

/* Kill grey shadow outline everywhere */
body,
h1, h2, h3, h4, h5, h6,
p, span, a, li,
.giant-text,
.section-title h2,
.classic-fill,
.about-stroke {
  text-shadow: none !important;
  filter: none !important;
}

/*******************************************************/
/******************** ## Main Header *******************/
/*******************************************************/
.logo{
    width:200px;
    height: 100px;;
}

/*******************************************************/
/******************** ## About Banner ******************/
/*******************************************************/
/* ABOUT US – Stroke Style Text */
.stroke-about{
    color:#F31515 ;
}
/* About banner – white background */
.about-banner {
  background-color: #ffffff;
}


/* About banner paragraph – justified text */
.about-banner .left p {
    color: #000000;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
}

/* CLASSIC GYPSUM – solid bold text */
.classic-fill {
  color: #000000;          /* solid black */
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;

  position: relative;
  z-index: 2;
}
/* ================= SIZE FIX ================= */

/* ABOUT US – stroke text (hero) */
.about-stroke {
  font-size: 160px;   /* reduced from oversized */
  letter-spacing: 6px;
}

/* CLASSIC GYPSUM – main brand text */
.classic-fill {
  font-size: 110px;   /* FIXED balanced size */
  letter-spacing: 2px;
  line-height: 1.05;
}

/* If CLASSIC and GYPSUM are on separate lines */
.about-banner .row.image .giant-text {
  margin-top: 80px;   /* pushes text down cleanly */
}

@media (max-width: 1199px) {
  .about-stroke {
    font-size: 120px;
  }

  .classic-fill {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .about-stroke {
    font-size: 72px;
    letter-spacing: 3px;
  }

  .classic-fill {
    font-size: 48px;
  }
}

/* About Style 2 – force light gray text to white */
.about-area-2,
.about-area-2 p,
.about-area-2 h1,
.about-area-2 h3,
.about-area-2 h6,
.about-area-2 .counter-title,
.about-area-2 .count-text,
.about-area-2 .tab-content p,
.about-area-2 .nav-link {
  color: #ffffff;
}

/* Justify paragraph text inside About tabs */
.about-area-2 .tab-content p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  
}
@media (max-width: 767px) {
  .about-area-2 .tab-content p {
    text-align: left;
  }
}

.about-area-2 .tab-content p {
  hyphens: auto;
}

/*******************************************************/
/******************** ## Service Section ******************/
/*******************************************************/
/* ================= SERVICES SECTION WHITE THEME ================= */

.service-area-2 {
  background-color: #ffffff !important;
}

/* Headings */
.service-area-2 h2,
.service-area-2 h5 {
  color: #000000;
}

/* Paragraph text */
.service-area-2 p {
  color: #333333;
}

/* Giant numbers (01, 02, 03) */
.service-area-2 .giant-text {
  color: rgba(0, 0, 0, 0.08); /* subtle background number */
}

/* Links */
.service-area-2 a {
  color: #000000;
}

.service-area-2 a:hover {
  color: #ff1e1e;
}

/* Carousel arrows */
.service-area-2 .carousel-control-prev-icon,
.service-area-2 .carousel-control-next-icon {
  color: #000000;
}

/* Arrow button icons */
.service-area-2 .carousel-buttons i {
  color: #000000;
}

/* ================= FAQ COLOR OVERRIDES ONLY ================= */

/* Section background */
.faq-area {
  background-color: #ffffff !important;
}

/* Headings */
.faq-area h2,
.faq-area .section-title h2 {
  color: #000000 !important;
}

/* FAQ questions */
.faq-area .accordion-button {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* Active question (opened) */
.faq-area .accordion-button:not(.collapsed) {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* FAQ answer text */
.faq-area .accordion-body {
  color: #000000 !important;
  background-color: #ffffff !important;
}

/* Category text (FAQ label) */
.faq-area .category-line,
.faq-area .section-title p {
  color: #000000 !important;
}

/* Accordion borders (soft light grey) */
.faq-area .accordion-item {
  border-color: #e0e0e0 !important;
}

/* Arrow icon color (Bootstrap default uses filter) */
.faq-area .accordion-button::after {
  filter: brightness(0) !important;
}

/*******************************************************/
/*** IMAGE-2 LIQUID GLASS – INNER TOP SHADOW ************/
/*******************************************************/

.glass-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  /* Wider & shorter */
  padding: 12px 52px;
  border-radius: 26px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Pressed Apple-style depth */
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.75),
    inset 0 -4px 7px rgba(0, 0, 0, 0.55),
    0 24px 50px rgba(0, 0, 0, 0.6);

  overflow: hidden;
  isolation: isolate;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 🌊 INNER TOP LIQUID SHADOW + HIGHLIGHT (NEW) */
.glass-badge::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    /* Top inner highlight */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.25) 18%,
      rgba(255, 255, 255, 0.08) 32%,
      transparent 45%
    ),
    /* Inner depth shadow */
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.35),
      transparent 40%
    );

  mix-blend-mode: overlay;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* 🧊 GLASS BREAKER / REFRACTION LINES (kept) */
.glass-badge::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.18) 45%,
      transparent 50%
    ),
    linear-gradient(
      210deg,
      transparent 42%,
      rgba(255, 255, 255, 0.12) 47%,
      transparent 52%
    ),
    linear-gradient(
      330deg,
      transparent 44%,
      rgba(255, 255, 255, 0.08) 49%,
      transparent 54%
    );

  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

/* Keep text above glass */
.glass-badge > * {
  position: relative;
  z-index: 2;
}

/* 🧊 TEXT */
.badge-role {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.badge-name {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  white-space: nowrap;
}

/* 👆 Apple press */
.glass-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.85),
    inset 0 -5px 9px rgba(0, 0, 0, 0.65),
    0 30px 65px rgba(0, 0, 0, 0.7);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .glass-badge {
    padding: 10px 36px;
    border-radius: 22px;
  }

  .badge-name {
    font-size: 24px;
  }
}

.team-item {
  position: relative;
}

.team-item .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;   /* keep vertical position */

  display: flex;
  justify-content: center;

  z-index: 5;
}
/* ================= RESPONSIVE GLASS BADGE ================= */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .team-item .text {
    bottom: 20px;
  }

  .glass-badge {
    padding: 12px 44px;
  }

  .badge-name {
    font-size: 28px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .team-item .text {
    bottom: 18px;
  }

  .glass-badge {
    padding: 10px 36px;
    border-radius: 22px;
  }

  .badge-name {
    font-size: 24px;
  }

  .badge-role {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-item .text {
    bottom: 14px;
  }

  .glass-badge {
    padding: 8px 28px;
    border-radius: 20px;
  }

  .badge-name {
    font-size: 20px;
  }

  .badge-role {
    font-size: 10px;
  }
}

/* Small mobile (very important for carousel) */
@media (max-width: 480px) {
  .team-item .text {
    bottom: 12px;
  }

  .glass-badge {
    padding: 6px 22px;
    border-radius: 18px;
  }

  .badge-name {
    font-size: 18px;
  }
}
/*******************************************************/
/*********************** ## Footer *********************/
/*******************************************************/

/* ================= CLASSIC GYPSUM FIX ================= */

/* CLASSIC text */
.classic-gypsum .classic-text {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #F31515;
    margin: 0 18px 0 0;
    line-height: 1;
}

/* GYPSUM text */
.classic-gypsum .gypsum-text {
    font-size: 120px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

/* Align logo with Address (top) */
.classic-gypsum {
    display: flex;
    align-items: flex-start;
    margin-top: 0;
    align-self: flex-start;
}

/* Ensure footer top row aligns properly */
.footer-top .row.mt-32 {
    align-items: flex-start;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* KEY FIX */
    gap: 32px;
    padding: 64px 64px; /* reduced vertical gap */
    position: relative;
}

/* Dark overlay */
.footer-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.footer-bottom > * {
    position: relative;
    z-index: 1;
}

/* Footer columns */
.footer-widget {
    width: 22%;
    display: flex;
    flex-direction: column;
}

/* Map column */
.map-widget {
    width: 34%;
    display: flex;
    flex-direction: column;
}

/* ================= MAP FIX ================= */

.map-widget h5 {
    margin-bottom: 12px; /* reduce gap above map */
}

.map-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 1; /* stretch to match column height */
}


.map-box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 36px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,0.6)
    );
    pointer-events: none;
}

.map-box iframe {
    width: 100%;
    height: 100%; /* MATCH COLUMN HEIGHT */
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* ================= SOCIAL ICONS ================= */

.social-links ul {
    display: flex;
    gap: 16px;
    margin: 12px 0 0;
    padding: 0;
}

.social-links ul li {
    list-style: none;
}

.social-links ul li a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links ul li a:hover {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ================= LISTS ================= */

.links li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.links li:last-child {
    border-bottom: none;
}

.links li i {
    margin-right: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* ================= CONTACT INFO ================= */

.f-c-info {
    font-size: 12px;
}

.f-c-info a,
.f-c-info b {
    font-size: 12px;
}

.f-c-info p {
    margin-bottom: 10px;
    line-height: 1.55;
}

.f-c-info p:first-child {
    max-width: 340px;
}

/* Call inline grid */
.f-c-info p:nth-child(2) {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 6px;
    align-items: start;
}

.f-c-info p:nth-child(2) b {
    white-space: nowrap;
}

.f-c-info p:nth-child(2) a:last-of-type {
    margin-top: 4px;
}

.f-c-info a {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.f-c-info a:hover {
    opacity: 1;
    color: #e53935;
}


/***************************************/
/**********RESPONSIVE QUERY ***********/
/*************************************/

/* ================= HERO – TABLET ONLY FIX ================= */
@media (max-width: 991px) and (min-width: 768px) {

  /* Keep two-column structure */
  .about-banner .row.top {
    align-items: flex-start;
  }

  .about-banner .left {
    padding-right:0px;
  }

  /* ABOUT text – scaled & aligned */
  .about-banner .stroke-about {
    font-size: 100px;          /* reduced from desktop */
    line-height: 1;
    position: relative;
    left: -10px;              /* softer overlap */
    top:-150px;
  }




  /* CLASSIC GYPSUM – controlled size & position */
  .about-banner .classic-fill {
    font-size: 50px;
    line-height: 1.1;
    position: absolute;
    left: 280px;
    bottom: 20px;
    white-space: nowrap;
  }
}


@media (max-width: 576px) {

  /* ================= ABOUT BANNER ORDER FIX ================= */

  .about-banner .row.top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-banner .row.top .right {
    order: 1;
    width: 100%;
    margin-bottom: 16px;
  }

  .about-banner .row.top .left {
    order: 2;
    width: 100%;
  }

  .about-banner .stroke-about {
    font-size: 30px;
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: 0.1px;
  }

  .about-banner .row.image {
    display: none;
  }

  .about-banner .stroke-about::after {
    content: " CLASSIC GYPSUM";
    font-size: 30px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.1px;
  }



   /* ================= STATS – MOBILE FRIENDLY LAYOUT ================= */

  /* Break Bootstrap layout */
  .about-area-2 .counter-wrap .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    text-align: center;
  }

  /* Remove Bootstrap column widths */
  .about-area-2 .counter-wrap .col-sm-4 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  /* Center last stat */
  .about-area-2 .counter-wrap .col-sm-4:last-child {
    grid-column: span 2;
  }

  .about-area-2 .counter-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Numbers */
  .about-area-2 .count-text {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;

    /* Optional: better numeric balance */
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
  }

  .about-area-2 .counter-text-wrap span.h3 {
    font-size: 16px;
  }

  /* Labels */
  .about-area-2 .counter-title {
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
  }


  /* ================= TABS (FINAL, STABLE VERSION) ================= */

  .about-area-2 {
    overflow-x: hidden;
  }

  .about-area-2 .tab-style-one {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    
  }

  .about-area-2 .tab-style-one .nav-item {
    min-width: 0;
  }

  .about-area-2 .tab-style-one .nav-link {
    width: 100%;
    text-align: left;        /* requested */
    padding: 0 6px 8px;
    font-size: 10px;         /* reduced */
    line-height: 1.25;
    white-space: nowrap;
    box-sizing: border-box;
    
  }

  .about-area-2 .tab-content p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  padding: 20px 0 0 0;
  }

  /* ================= HARD RESET BOOTSTRAP TABS ================= */

  .about-area-2 .tab-style-one {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    
  }

  .about-area-2 .tab-style-one .nav-item {
    flex: unset !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .about-area-2 .tab-style-one .nav-link {
    display: inline !important;
    width: 100% !important;
    padding: 6px 6px 6px 6px!important;
    margin: 0 !important;

    font-size: 18px !important;   /* FINAL SAFE SIZE */
    line-height: 1.2;
    letter-spacing: 1;

    text-align: right !important;
    white-space: nowrap !important;

    overflow: hidden !important;
    text-overflow: clip !important;
    
  }
  

}

