/*
 Theme Name: Astra Child
 Template: astra
*/

/* ================= GLOBAL COLORS ================= */

:root{
  --primary:#2563EB;
  --primary-dark:#1E3A8A;
  --bg:#F4F6F8;
  --text:#0F172A;
  --sub:#475569;
  --border:#E5E7EB;
}

/* ================= BASE ================= */

body{
  background:var(--bg) !important;
  color:var(--text);
  line-height:1.6;
  font-size:16px;
}

a{ text-decoration:none; color:inherit; }

/* FULL PAGE WIDTH CONTAINER */
.container{
  max-width:1350px;
  margin:auto;
  padding:20px;
}



/* ================= HERO ================= */

.hero-wrap{ padding:70px 0; }

.hero-grid{
  display:flex;
  gap:40px;
  align-items:center;
  flex-wrap:wrap;
}

.hero-card{
  background:#FFF;
  padding:30px;
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:0 14px 38px rgba(0,0,0,.08);
  flex:1;
  transition:.3s;
}

.hero-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(0,0,0,.12);
}

.hero-card h1{ margin-bottom:12px; }
.hero-card p{ margin-bottom:16px;color:var(--sub); }

.hero-buttons{ display:flex; gap:12px; }

.btn{
  padding:12px 20px;
  border-radius:12px;
  font-weight:600;
  display:inline-block;
}

.btn.primary{ background:var(--primary);color:#fff; }
.btn.primary:hover{ background:var(--primary-dark); }

.btn.secondary{
  border:1px solid var(--primary);
  background:#ECF2FF;
  color:var(--primary);
}

.hero-photo img{
  width:470px;
  height:340px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}



/* ================= FEATURES ================= */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.fcard{
  background:#FFF;
  padding:20px;
  border-radius:16px;
  border:1px solid var(--border);
  text-align:center;
  box-shadow:0 14px 32px rgba(0,0,0,.06);
  transition:.3s;
}

.fcard:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 44px rgba(0,0,0,.10);
}



/* ================= SERVICES ================= */

.services-wrap h2{
  text-align:center;
  margin-bottom:14px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service{
  background:#FFF;
  padding:18px;
  border-radius:16px;
  border:1px solid var(--border);
  display:flex;
  flex-direction:column;
  box-shadow:0 14px 32px rgba(0,0,0,.06);
  transition:.3s;
}

.service:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 48px rgba(0,0,0,.12);
}

.service img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
}

.svc-btn{
  margin-top:auto;
  padding:10px 18px;
  border-radius:8px;
  background:#0b3d91;
  color:#fff;
  font-weight:600;
}

.svc-btn:hover{ background:#082e6c; }



/* ================= INDUSTRIES & WHY ================= */

.industries-grid,
.whychoose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.industry,
.why-item{
  background:#f8fbff;
  border-radius:14px;
  padding:18px;
  border:1px solid #e6eef8;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
  transition:.35s;
}

.industry:hover,
.why-item:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  background:#fff;
}



/* ================= PROCESS ================= */

.step-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.step{
  background:#FFF;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  font-weight:700;
  text-align:center;
  box-shadow:0 14px 32px rgba(0,0,0,.06);
  transition:.3s;
}

.step:hover{
  background:#ECF2FF;
  color:var(--primary-dark);
}



/* ================= CTA ================= */

.cta-grid{
  display:flex;
  gap:40px;
  align-items:center;
  flex-wrap:wrap;
}

.cta-grid img{
  width:420px;
  height:300px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 18px 55px rgba(0,0,0,.12);
}



/* ================= FAQ ACCORDION ================= */

.faq-wrap{
  max-width:1100px;
  margin:40px auto;
  padding:10px 20px;
}

.faq-wrap h2{
  text-align:center;
  margin-bottom:16px;
  font-size:24px;
  color:#0b3d91;
}

.faq-item{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  margin-bottom:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.faq-question{
  padding:14px 16px;
  font-weight:700;
  cursor:pointer;
  position:relative;
}

.faq-question:after{
  content:"+";
  position:absolute;
  right:16px;
  top:10px;
  font-size:22px;
}

.faq-item.active .faq-question:after{
  content:"−";
}

.faq-answer{
  display:none;
  padding:12px 16px 16px;
  border-top:1px solid #e5e7eb;
}


/*floating button social */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 30%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-social a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Button colors */
.floating-social .whatsapp {
    background-color: #25D366;
}

.floating-social .booking {
    background-color: #FF9800;
}




/* ================= RESPONSIVE ================= */

@media(max-width:1100px){
  .service-grid{ grid-template-columns:repeat(3,1fr); }
  .industries-grid,
  .whychoose-grid{ grid-template-columns:repeat(3,1fr); }
}

@media(max-width:900px){
  .feature-grid,
  .service-grid,
  .step-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .industries-grid,
  .whychoose-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .container{
    max-width:95%;
  }
}

@media(max-width:700px){

  .hero-grid{ flex-direction:column; }

  .hero-photo img{
    width:100%;
    height:260px;
  }

  .service-grid,
  .feature-grid,
  .step-grid,
  .industries-grid,
  .whychoose-grid{
    grid-template-columns:1fr;
  }

  .faq-wrap{
    max-width:100%;
  }
}

/* ===== CTA RIGHT IMAGE LAYOUT ===== */

.cta-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* Text box always left */
.cta-grid > div{
  flex:1;
}

/* Image always right */
.cta-grid img{
  flex:1;
  max-width:480px;
  height:auto;
  display:block;
  margin-left:auto;
}

/* Mobile – stack vertically */
@media(max-width:800px){
  .cta-grid{
    flex-direction:column;
    text-align:center;
  }

  .cta-grid img{
    margin-left:0;
    max-width:100%;
  }
}

/* Remove underline from all links site-wide */
a,
a:visited,
a:hover,
a:focus,
a:active{
  text-decoration:none !important;
  box-shadow:none !important;
}

/* cta ending */
.gl-cta {
    text-align: center;
    margin: 60px 0;
}

.gl-cta-link {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0b3c5d, #125f8c);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 999px; /* full rounded pill */
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(11, 60, 93, 0.25);
    transition: all 0.3s ease;
}

/* Hover effect */
.gl-cta-link:hover {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(245, 124, 0, 0.35);
}

@media (max-width: 768px) {
    .gl-cta-link {
        font-size: 16px;
        padding: 14px 26px;
    }
}
/* ===============================
   INCCS TOP BAR – CLEAN VERSION
================================ */

.inccs-top-bar{
  background:#0b3c5d;            /* deep professional blue */
  color:#ffffff;
  font-size:13px;
}

.inccs-top-flex{
  max-width:1350px;
  margin:auto;
  padding:6px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* ---------- LEFT: SOCIAL ---------- */
.inccs-social{
  display:flex;
  gap:14px;
}

.inccs-social a{
  color:#ffffff;
  font-size:14px;
  opacity:0.85;
  transition:0.25s;
}

.inccs-social a:hover{
  opacity:1;
  transform:translateY(-1px);
}

/* ---------- CENTER: EMAIL ---------- */
.top-center{
  margin-left:auto;
  margin-right:20px;
}

.top-center a{
  color:#ffffff;
  font-weight:500;
  opacity:0.9;
}

.top-center a:hover{
  text-decoration:underline;
  opacity:1;
}

/* ===== SEARCH WITH BUTTON ===== */

.inccs-top-search form{
  display:flex;
  align-items:center;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:20px;
  overflow:hidden;
}

.inccs-top-search input{
  border:none;
  background:transparent;
  padding:0 10px;
  height:28px;
  font-size:12px;
  color:#fff;
  outline:none;
  width:130px;
}

.inccs-top-search input::placeholder{
  color:rgba(255,255,255,0.7);
}

.inccs-top-search button{
  background:#ff9800;
  border:none;
  height:28px;
  width:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.25s;
}

.inccs-top-search button i{
  color:#fff;
  font-size:13px;
}

.inccs-top-search button:hover{
  background:#f57c00;
}

/* focus effect */
.inccs-top-search form:focus-within{
  background:#ffffff;
}

.inccs-top-search form:focus-within input{
  color:#000;
}


/* ---------- MOBILE ---------- */
@media(max-width:768px){

  .inccs-top-flex{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }

  .top-center{
    order:2;
    width:100%;
    text-align:center;
    margin:0;
  }

  .inccs-top-search{
    order:3;
    width:100%;
    text-align:center;
  }

  .inccs-top-search input{
    width:90%;
  }
}


/* =========================================
   HIDE TOP BAR ONLY ON MOBILE PHONES
========================================= */

@media (max-width: 767px){
  .inccs-top-bar{
    display:none !important;
  }
}


/* Disable page title globally */
.page .entry-title,
.page h1.entry-title,
.page-title,
.wp-block-post-title {
    display: none !important;
}


/* ===============================
   FIX: POST / PAGE CONTENT WIDTH
   (ASTRA NARROW CONTAINER ISSUE)
================================ */

/* Force full-width layout for posts & pages */
.single-post .ast-container,
.page .ast-container,
.single .ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Control readable width of content */
.single-post .entry-content,
.page .entry-content {
    max-width: 1200px;   /* adjust if you want wider (1300px) */
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix Astra narrow layout explicitly */
.ast-narrow-container .site-content,
.ast-narrow-container .content-area {
    max-width: 100% !important;
}

/* Fix editor & frontend mismatch */
.ast-plain-container .entry-content,
.ast-page-builder-template .entry-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
