/*
Theme Name: Syncorp Constructions
Author: App and Website
Description: The official consulting comapny theme by <a href="https://appandwebsite.au/"> App and Website </>
Version: 1.0.0
*/


/* ============== Pagination css starts=================== */
.pagination_main{
	width: 100%;
	display: flex;
	justify-content: center;
}
.pagination_main .page-numbers{
   margin-right: 1.2rem;
   width: 40px!important;
   height: 45px!important;
   line-height: 2.6rem!important;
   font-size: 1.3rem;
   font-weight: 600;
   text-align: center;
   border-radius: 6px;
   border: 2px solid #e6392a;
   background: #fff;
   color: #e6392a;
 }
 .pagination .page-numbers:hover{
   background: #e6392a;
   border-color: #e6392a;
   color: #fff;
 }
 .pagination .current {
    background: #e6392a;
    border-color: #e6392a;
   color: #fff;
 }
 .pagination .page-numbers:last-child{
   margin-right: 0rem;
 }
 /* ============== Pagination css ends=================== */


 /* 
Colors
#244B62
#a4494c */


.main-header .search-box-btn {
    background: #244B62;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .search-box-btn a i {
    color: #fff;
    font-size: 24px;
}
.main-header .main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    line-height: 24px;
    letter-spacing: 0px;
}
.main-header .main-menu .navigation > li > ul {
    width: 17rem;
}
.main-header .main-menu .navigation > li > a {
    color: #000;
}
.mobile-menu .close-btn {
    font-size: 18px;
    font-weight: 900;
    color: red;
}
.hpwrap i{
    margin-right: 5px;
}
.main-header .header-lower .logo-box {
    padding: 12px 0px;
}
.main-header.fixed-header .header-lower .logo-box {
    padding: 12px 0px;
}
@media only screen and (max-width: 767px) {
    .main-header .outer-box .header_button-box {
        display: block!important;
    }
    .main-header .auto-container {
    padding: 0;
}
}

@media only screen and (max-width: 480px) {
    .main-header .header-lower .outer-box .header_button-box{
        padding-top: 7px;
    }
    .main-header .header-lower .outer-box .header_button-box a{
        padding-top: 7px;
    }
    .main-header .outer-box .header_button-box a{
        padding: 8px 16px!important;
    }
    .main-header .header-lower .logo-box {
       padding: 5px 0px;
    }
    .main-header .header-lower .logo-box a img {
      height: 50px;
    }
    .main-header.fixed-header .header-lower .logo-box {
     padding: 5px 0px;
    }
}




.rc2-hero {
  display: flex;
  align-items: center;
  padding: 60px 0px;
}

.rc2-hero-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.rc2-hero-left h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.rc2-hero-left h1 span {
  color: #ffd1d1;
}

.rc2-hero-left p {
  font-size: 18px;
  color: #e5eef3;
  max-width: 520px;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 35px;
}

.rc2-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rc2-btn-primary {
  background: #eb2027;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rc2-btn-primary:hover {
  background: #eb2027;
  color: #fff;
  transform: translateY(-2px);
}

.rc2-btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rc2-btn-secondary:hover {
  background: #ffffff;
  color: #244B62;
}

/* RIGHT FORM */
.rc2-hero-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.rc2-hero-right h3 {
  font-size: 24px;
  font-weight: 700;
  color: #244B62;
  margin-bottom: 25px;
}

.rc2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.rc2-hero-right input,
.rc2-hero-right textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.rc2-hero-right textarea {
  resize: none;
  height: 120px;
  margin-bottom: 20px;
}

.rc2-hero-right button {
  width: 100%;
  padding: 14px;
  background: #244B62;
  color: #ffffff;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.rc2-hero-right button:hover {
  background: #1d3f53;
}

/* TABLET */
@media (max-width: 991px) {
  .rc2-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rc2-hero-left {
    text-align: center;
  }

  .rc2-hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .rc2-hero-actions {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .rc2-hero {
    padding: 70px 0px;
  }

  .rc2-form-grid {
    grid-template-columns: 1fr;
  }

  .rc2-hero-right {
    padding: 28px 22px;
  }
}


.sec-title_heading {
    text-transform: capitalize;
}
h2 {
    line-height: 46px;
    font-size: 40px;
}
.py_custom1{
  padding: 40px 0;
}


.nsgx-features {
  padding: 40px 0px;
  background: linear-gradient(180deg, #f9fbfd, #eef3f7);
}

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

.nsgx-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 30px 35px 20px 35px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
}

.nsgx-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(164, 73, 76, 0.15),
    rgba(36, 75, 98, 0.15)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nsgx-card:hover::after {
  opacity: 1;
}

.nsgx-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.nsgx-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #244b62, #a4494c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 18px 40px rgba(36, 75, 98, 0.35);
}

.nsgx-card h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 0px;
}

.nsgx-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #5b6675;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
  .nsgx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .nsgx-card {
    padding: 10px;
  }
  .nsgx-grid {
   gap: 10px;
  }
  .nsgx-card h3 {
  font-size: 16px;
  }
.nsgx-card p {
  font-size: 14px;
}
}


/* ===== SERVICES AREA ===== */
.nsg-services-area {
  padding: 60px 0px;
  background: #f8fafc;
}

.nsg-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; 
}


/* ===== CARD ===== */
.nsg-services-card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
	 flex: 0 0 calc(33.333% - 20px);
}

.nsg-services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* ===== IMAGE ===== */
.nsg-services-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ===== CONTENT ===== */
.nsg-services-content {
  padding: 0 25px 25px 25px;
}

.nsg-services-content h3 a{
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.nsg-services-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
}

.nsg-services-content a {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
}

.nsg-services-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nsg-services-card {
  flex: 0 0 calc(50% - 30px);
}
}

@media (max-width: 600px) {
  .nsg-services-card {
    flex: 0 0 100%;
}

  .nsg-services-card img {
    height: 200px;
  }
}


.header_custom {
  width: 100%;
  display: flex;
  justify-content: center;
}
.header_wrap{
  max-width: 800px;
}
.header_wrap p{
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .header_wrap{
  max-width: 100%;
}
}



/* ===== SUPPLIERS AREA ===== */
.nsg-suppliers-area {
  padding: 50px 0;
  background: #fff;
}

.nsg-suppliers-wrapper {
  margin: auto;
}

/* ===== HEADER ===== */
.nsg-suppliers-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.nsg-suppliers-header h2 {
  margin-bottom: 12px;
}

.nsg-suppliers-header p {
  font-size: 15px;
  color: var(--color-two);
  line-height: 1.7;
}

/* ===== GRID ===== */
.nsg-suppliers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

/* ===== SUPPLIER CARD (UPGRADED) ===== */
.nsg-supplier-card {
  position: relative;
  padding: 32px;
  min-height: 130px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 8px 25px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: all 0.4s ease;
}

/* ===== GRADIENT BORDER ===== */
.nsg-supplier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    #dc2626,
    #2563eb,
    #16a34a
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: 0.4s;
}

/* ===== HOVER EFFECT ===== */
.nsg-supplier-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.18),
    0 0 35px rgba(220,38,38,0.25);
}

/* ===== HOVER BORDER INTENSITY ===== */
.nsg-supplier-card:hover::before {
  opacity: 1;
}

/* ===== LIGHT GLOW SWEEP ===== */
.nsg-supplier-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
}

.nsg-supplier-card:hover::after {
  top: 0;
  left: 0;
}

/* ===== LOGO ===== */
.nsg-supplier-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.4s ease;
  z-index: 2;
}

.nsg-supplier-card:hover img {
  transform: scale(1.05);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nsg-suppliers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nsg-suppliers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .nsg-supplier-card {
    padding: 10px;
}
}

/* ===== TOP DESIGNS AREA ===== */
.sk-top-designs {
  padding: 50px 0px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.sk-top-wrapper {
  margin: auto;
}

/* ===== HEADER ===== */
.sk-top-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.sk-top-header h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 12px;
}

.sk-top-header p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

/* ===== GRID ===== */
.sk-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== PILL CARD ===== */
.sk-design-pill {
  position: relative;
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* LEFT DOT */
.sk-design-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
  transition: 0.35s;
}

/* GRADIENT BORDER */
.sk-design-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #dc2626, #2563eb);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: 0.35s;
}

/* HOVER EFFECT */
.sk-design-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.16);
  color: #dc2626;
}

.sk-design-pill:hover::before {
  opacity: 1;
}

.sk-design-pill:hover span {
  transform: scale(1.3);
  background: #2563eb;
}

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

@media (max-width: 520px) {
  .sk-design-grid {
    grid-template-columns: 1fr;
  }

  .sk-top-header h2 {
    font-size: 28px;
  }
}


.journey-section {
  padding: 50px 0;
  background: #0f1220;
  color: #ffffff;
}

.journey-header {
  margin-bottom: 3.5rem;
}

.journey-header h2 {
  color: #fff;
}

.journey-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  color: #fff;
}

/* Vertical journey layout */
.journey-flow {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.8rem;
}

/* NOT a card */
.journey-item {
  position: relative;
  padding: 1.5rem;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 5px 0px;
}

/* Gradient side line */
.journey-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #244B62, #ff4d6d, #5f27cd);
}

.journey-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.journey-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.9;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .journey-flow {
    grid-template-columns: auto;
    gap: 25px;
  }
  .blog-one .blog-one_button{
    display: none!important;
  }
  .journey-item h3 {
  font-size: 1.2rem;
}
}
.news-block_one-title {
    text-transform: none;
    font-size: 18px;
    line-height: 26px!important;
}

.blog-one .inner-container {
    padding: 0px;
    border-radius: 2px;
    background:#fff;
}
.news-block_one .news-block_one-inner .news-block_one-content{
    background: #f5f5f5;
    padding: 20px;
}
.news-block_one-meta li{
  font-weight: 500;
}
.news-block_one-meta li i{
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
    .blog-one .inner-container {
        padding: 0!important;
    }
}


.blog_section img{
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.main-footer::before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--color-two);
    overflow: hidden;
    border-radius: 0px;
}
.main-footer {
    margin-bottom: 0px;
}

.main-header .main-menu .navigation > li:hover > a, .main-header .main-menu .navigation > li.current > a {
    opacity: 1;
    color: #000;
}

.footer-contact_list li:nth-child(1) {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0px solid var(--white-color);
    color: #fff;
}
.footer-contact_list li:nth-child(2) a {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0px solid var(--white-color);
}
.footer-contact_list li:nth-child(3) a {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0px solid var(--white-color);
}
.footer-contact_list li:nth-child(4) a {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 0px solid var(--white-color);
    color: #fff;
}
.footer-contact_list li:nth-child(4) a:hover {
    color:   var(--main-color);
}

.page-title {
    padding: 120px 0px 120px;
}
.story-three_inner {
    padding: 10px 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 26px;
}
.story-three_inner i {
    position: relative;
    width: 60px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 42px;
    border-radius: 100%;
    text-align: center;
    margin-top: 20px;
    margin-right: 10px;
    color: var(--color-two);
    background-color: var(--white-color);
    font-family: "flaticon_palace-icons";
}
.story-three_checklist li {
    position: relative;
    padding-left: 0px;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
    margin-bottom: 10px;
    display: inline-block;
    color: rgba(var(--color-two-rgb), 0.80);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
    .story-three_inner{
       display: none;
    }
}



.mapcontactinner{
  border: 5px solid #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.py_custom2{
  padding: 60px 0;
}


/* ===============================
   NSG THANK YOU SECTION
================================ */

.nsg-thankyou-wrapper {
  min-height: 100vh;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  ),
  url("assets/images/bnr2.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.nsg-thankyou-container {
  width: 100%;
  max-width: 720px;
}

.nsg-thankyou-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Icon */
.nsg-thankyou-icon {
  width: 80px;
  height: 80px;
  background: #e63946;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

/* Title */
.nsg-thankyou-title {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 15px;
}

/* Text */
.nsg-thankyou-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Info Box */
.nsg-thankyou-info {
  background: #f8fafc;
  border-left: 4px solid #e63946;
  padding: 18px 20px;
  margin-bottom: 30px;
  border-radius: 6px;
  font-size: 15px;
  color: #334155;
}

/* Buttons */
.nsg-thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.nsg-btn-primary,
.nsg-btn-secondary {
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nsg-btn-primary {
  background: #e63946;
  color: #ffffff;
}

.nsg-btn-primary:hover {
  background: #c92f3b;
}

.nsg-btn-secondary {
  border: 2px solid #e63946;
  color: #e63946;
  background: transparent;
}

.nsg-btn-secondary:hover {
  background: #e63946;
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .nsg-thankyou-card {
    padding: 40px 25px;
  }

  .nsg-thankyou-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .nsg-thankyou-title {
    font-size: 22px;
  }

  .nsg-thankyou-text {
    font-size: 15px;
  }
}

.property-block_one-heading{
  text-transform: capitalize;
  font-size: 18px;
  line-height: 26px;
}
.price_div h6  {
  font-weight: 500;
  font-size: 16px;
}
.price_div h6 span{
  font-weight: 700!important;
}


/* =====================================
   GLOBAL RESET & TYPOGRAPHY
===================================== */

.nsg-project-page {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1f2937;
  line-height: 1.75;
  background: #ffffff;
}

.nsg-project-page p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
}

.nsg-project-page strong {
  font-weight: 600;
}

/* =====================================
   HERO / OVERVIEW SECTION
===================================== */

.nsg-project-hero {
  background: #f8fafc;
  padding: 70px 0px;
}

.nsg-project-hero-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* IMAGE */
.nsg-project-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* TEXT CONTENT */
.nsg-project-summary h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 28px;
  color: #0f172a;
}

.nsg-project-summary h3 {
  font-size: 22px;
  font-weight: 600;
  color: #e63946;
  margin: 32px 0 12px;
  line-height: 1.4;
}

.nsg-project-summary p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #334155;
}

/* =====================================
   CONTENT SECTIONS
===================================== */

.nsg-project-section {
  margin: 70px auto;
  padding: 0 0px;
}

.nsg-project-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.35;
  color: #0f172a;
}

.nsg-project-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #334155;
}

/* =====================================
   FEASIBILITY TABLE
===================================== */

.nsg-feasibility-table {
  overflow-x: auto;
}

.nsg-feasibility-table table {
  width: 100%;
  border-collapse: collapse;
}

.nsg-feasibility-table th,
.nsg-feasibility-table td {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  font-size: 15px;
}

.nsg-feasibility-table thead th {
  background: #f1f5f9;
  font-weight: 600;
}

.nsg-total-row td {
  font-weight: 700;
  background: #f8fafc;
}

.nsg-profit-row td {
  font-weight: 700;
  background: #ecfdf5;
  color: #065f46;
}

/* =====================================
   LIST FIXES (IMPORTANT)
===================================== */

/* BULLET LIST */
.nsg-bullet-list {
  list-style: disc;
  padding-left: 22px;
  margin: 16px 0;
}

.nsg-bullet-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* NUMBER LIST */
.nsg-number-list {
  list-style: decimal;
  padding-left: 22px;
  margin: 16px 0;
}

.nsg-number-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* PROCESS SUB LISTS */
.nsg-process-block ul {
  list-style: disc;
  padding-left: 22px;
  margin-top: 12px;
}

.nsg-process-block li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* =====================================
   PROCESS BLOCKS
===================================== */

.nsg-process-block {
  background: #f9fafb;
  padding: 28px 30px;
  border-radius: 12px;
  margin-top: 36px;
}

.nsg-process-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}
.nsg-bullet-list li{
  list-style: disc!important;
}
.nsg-number-list li{
   list-style-type: decimal !important;
}
.nsg-process-block ul li {
    list-style: disc;
}
.nsg-project-section {
    max-width: 100%;
    margin: 70px auto;
    padding: 0 0px;
}
@media screen and (max-width: 992px) {
  .nsg-project-hero-inner {
  grid-template-columns: 1fr;
  gap: 20px;
}
}
/* ==========================*/


 .nsg-hero {
    background: #244B62;
    color: #fff;
    text-align: center;
    padding: 60px 0px;
  }
  .nsg-hero h1 {
    font-size: 2.5rem;
    color: #fff;
  }
  .nsg-hero p {
    max-width: 800px;
    margin: 0 auto 25px;
    color: #ddd;
  }
  .nsg-hero .nsg-btn {
    background: #a4494c;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    margin: 5px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .nsg-hero .nsg-btn:hover {
    background: #fff;
    color: #a4494c;
  }
.sevintsec img{
  border-radius: 12px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sevintsec .ct_row{
  display: grid!important;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 40px;
}
  .nsg-intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0px;
    gap: 30px;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .nsg-intro-text {
    flex: 1 1 45%;
  }
  .nsg-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .nsg-intro-text p {
    line-height: 1.6;
  }
  .nsg-intro-form {
    flex: 1 1 45%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }
  .nsg-intro-form input,
  .nsg-intro-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .nsg-intro-form button {
    background: #244B62;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
  }
  .nsg-intro-form button:hover {
    background: #a4494c;
  }

  .nsg-service-section {
    margin: 60px auto;
    padding: 0 0px;
    text-align: center;
  }
  .nsg-service-section img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .nsg-service-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .nsg-service-section p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .sevintsec{
    background: #f5f5f5;
    padding: 50px 0;
  }
 .introf .ct_row{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    margin: 50px auto;
    align-items: center;
  }
  .nsg-reasons .ct_row{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    margin: 50px auto;
  }
  /* ===== REASON CARD (UPGRADED) ===== */
.nsg-reason-card {
  position: relative;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ===== GRADIENT BORDER ===== */
.nsg-reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px; /* thickness of the border */
  background: linear-gradient(135deg, #ff6b6b, #5f27cd, #1dd1a1);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  transition: 0.4s;
}

.nsg-reason-card h4{
  font-size: 18px;
}
  .nsg-reason-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .nsg-cta {
    background: linear-gradient(135deg, #b2dcf5, #ebd3d3);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
  }
  .nsg-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .nsg-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
  }
  .nsg-cta .nsg-btn {
    background: #a4494c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
  }
  .nsg-cta .nsg-btn:hover {
    background: #fff;
    color: #a4494c;
  }

  @media (max-width: 768px) {
    .nsg-intro {
      flex-direction: column;
    }
    .nsg-intro-text, .nsg-intro-form {
      flex: 1 1 100%;
    }
    .introf .ct_row{
    grid-template-columns: 100%;
  }
   .nsg-reasons .ct_row{
    grid-template-columns: auto;
  }
  .sevintsec .ct_row{
  grid-template-columns: 100%;
}
.title_ch h1{
  font-size: 32px!important;
  margin-bottom: 20px;
}
.title_ch h2{
  font-size: 32px!important;
}
}


.deesign_page{
  margin-top: 0px;
  background: #cee5f3;
}
.whybg{
  background: #eaf4fa;
  padding: 50px 0 20px 0;
}


/* ===== DIRECTORS SECTION ===== */
.nsg-directors-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #fff;
  margin-bottom: 50px;
}

.nsg-director-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  flex: 1 1 300px;
  display: grid;
  flex-direction: column;
}

/* ===== GRADIENT BORDER ===== */
.nsg-director-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px; /* border thickness */
  background: linear-gradient(
    135deg,
    #ff6b6b,
    #5f27cd,
    #1dd1a1
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}



.nsg-director-image img {
  width: 260px;
  border: 1px solid #ccc;
  margin-top: 20px;
  margin-left: 20px;
  height: auto;
  display: block;
  object-fit: cover;
}

.nsg-director-content {
  padding: 25px;
}

.nsg-director-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.nsg-director-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 15px;
}

.faq-two_accordion-outer {
    padding-left: 0px;
}


.main-footer .big-column:nth-child(1) .footer_column .links-widget {
    margin-left: 0px;
}
.footer_top_wrapper{
  display: grid;
  grid-template-columns: auto 250px;
  margin-bottom: 30px;
  background: #ffefef;
  padding: 20px;
  border-radius: 10px;
}
.footer-text {
    max-width: 100%;
    margin: 0;
}
.footer_socials a {
    background: #fe0000;
}
.soc_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
.soc_wrapper h6{
  font-weight: 600;
}
.main-footer .widgets-section {
    position: relative;
    padding: 70px 0px 20px;
}
.main-footer .footer-bottom {
    margin-bottom: -5px;
    background: #911111!important;
}
.main-footer .footer-bottom:before {
    background-color: #911111!important;
}
.footerptetx{
  max-width: 320px;
  color: #eee;
  margin-top: -10px;
}
.main-footer .big-column:nth-child(2) .footer_column .links-widget {
    margin-left: 0px;
}

.hero_overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.page_hero .left_content p{
  max-width: 100%;
}
.page_hero .left_content {
  max-width: 920px;
}
.page_hero .hero_row{
  display: flex;
  justify-content: center;
  text-align: center;
}
.story-two_image-two  {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 380px;
}
.story-two_image-two img {
    border-radius: 6px;
}
.story-two_content-outer {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.story-two_checklist li{
  margin-bottom: 10px;
}
.story-two_image-outer {
    padding-bottom: 0px;
}

.sc-mv-section {
  padding: 60px 0px;
  background: linear-gradient(135deg, #0f1a1f, #1c2b33);
}

.sc-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sc-mv-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.sc-mv-card:hover {
  transform: translateY(-8px);
}

.sc-mv-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.sc-mv-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #111;
}

.sc-mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}


.sc-values-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.sc-section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #111;
}

.sc-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.sc-value-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border-top: 4px solid #e6392a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sc-value-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.sc-value-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .sc-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.sc-process-white {
  padding: 90px 20px;
  background: #ffffff;
}

.sc-process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.sc-process-header h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.sc-process-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.sc-process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sc-process-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  border-radius: 18px;
  background: #f9f9f9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border: 2px solid #ff5a3d;
}

.sc-process-item:hover {
  transform: translateY(-6px);
}

.sc-process-number {
  min-width: 60px;
  height: 120px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e6392a, #ff5a3d);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-process-content{
  align-self: center;
}
.sc-process-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #111;
}

.sc-process-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}


.rc2-hero-right {
    background: linear-gradient(135deg, #e6392a, #ff5a3d);
    border-radius: 5px;
    padding: 36px;
    box-shadow: none;
}
.rc2-hero-right button {
    background: #000;
}



.sc-contact-cards-section {
  padding: 50px 0px;
  background: #f7f7f7;
}

.sc-contact-cards-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
}

.sc-contact-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.sc-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6392a, #ff5a3d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-contact-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.sc-contact-card h4 {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
}

.sc-contact-card p {
  font-size: 16px;
  color: #555;
}

.sc-contact-card a {
  color: #e6392a;
  font-weight: 600;
  text-decoration: none;
}
.contact_image img{
  border-radius: 5px;
}
.sc-contact-card a:hover {
  text-decoration: underline;
}
.contact_main_form {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .sc-contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sc-contact-cards-container {
    grid-template-columns: 1fr;
  }
}


.textwhitecustom h2{
  color: #fff;
}
.textwhitecustom p{
  color: #eee;
}
.servc .rc2-hero-right {
    background: #fff;
    border-radius: 2px!important;
    padding: 36px;
    box-shadow: none;
}
.servc .rc2-hero-right img {
    border-radius: 4px!important;
}



/* Section Styling */
.syncorp-home-section {
  padding: 0 0 60px 0;
  color: #111;
}

.syncorp-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Main Title and Paragraphs */
.syncorp-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.syncorp-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.95;
}

/* Points Section */
.syncorp-points-section {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.syncorp-points-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.syncorp-points-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.syncorp-points-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
    font-weight: 500;
    color: #444;
    font-family: inherit;
}

.syncorp-points-list li::before {
  content: "✔"; /* Unicode tick */
  position: absolute;
  left: 0;
  top: 2px; /* Adjust for vertical alignment */
  font-size: 14px;
  color: #fff; /* Green tick color, you can change */
  line-height: 1;
  background: #e6392a;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nsg-cta {
  background: #fff;
  padding-top: 0;
}
.cta_wrapped{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 5px;
}
.cta_wrapped h2{
  color: #fff;
}
.cta_wrapped p{
  color: #eee;
  max-width: 900px;
}
.ctabtntwo{
  margin-left: 10px;
}


/* Hide accordion content by default */
.accordion .acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Show content when current */
.accordion .acc-content.current {
  max-height: 1000px; /* large enough to show content */
}
.skyline-faq .acc-content .content {
    padding: 0;
}
.skyline-faq .accordion.block {
    padding: 0px!important;
}
.accordion-box .block .icon-outer {
    position: absolute;
    right: 10px;
    top: 10px;
}
.cta_bg2{
  padding-top: 50px;
  background: linear-gradient(135deg, #fac1b7, #fadfdd, #fac1b7);
}
.pdreddmall h3{
  line-height: 30px;
}


.projects-section {
  padding: 80px 20px 0px 20px!important;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.projects-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
}

.projects-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.projects-tab {
  background-color: #fff;
  color: #ff3b3b;
  border: 2px solid #ff3b3b;
  padding: 10px 25px;
  margin: 0 10px 10px 0;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.projects-tab.active,
.projects-tab:hover {
  background-color: #ff3b3b;
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card img {
  width: 100%;
  display: block;
}

.project-card .project-title {
  text-align: center;
  padding: 15px 10px;
  font-size: 1.1rem;
  color: #222;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Responsive */
@media (max-width: 768px) {
  .syncorp-home-section {
    padding: 60px 16px;
  }

  .syncorp-main-title {
    font-size: 1.8rem;
  }

  .syncorp-points-list {
    grid-template-columns: 1fr;
  }
  .pdreddmall{
    padding-top: 0;
  }
}

@media (max-width: 390px) {
  .ctabtntwo{
  margin-left: 0px;
   margin-top: 10px;
}
}
/* Responsive */
@media (max-width: 768px) {
  .sc-process-item {
    flex-direction: column;
  }

  .sc-process-number {
    width: 55px;
    height: 55px;
  }

  .sc-process-header h2 {
    font-size: 30px;
  }
}



@media (max-width: 1400px) {
.colshd {
  display: none;
}
}

/* Responsive */
@media (max-width: 768px) {
  .sc-mv-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 576px) {
.topfootrow{
  padding:0 10px;
}
.footer_top_wrapper{
  grid-template-columns: 100%;
}
.soc_wrapper{
  justify-content: flex-start;
  margin-top: 10px;
}
}





/* colors
#fe0000  rgba(254, 0, 0)
#ff7e00  rgba(255, 126, 0) */


.logo img{
 height: 50px;
}
.main-header {
    min-height: 80px;
    background: transparent!important;
}
.header-lower .auto-container{
  margin-top: 20px;
}
.main-header.fixed-header .header-lower .auto-container{
  margin-top: 0px;
}
.main-header .main-menu {
    background: transparent;
}
.hero_section {
  position: relative;
  margin-top: -100px;
}
.hero_section .container{
  padding-top: 120px;
}

.header-lower .container{
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,0.7), rgba(255,255,255,1));
  border-radius: 50px;
  padding: 0px 20px 0px 0px;
}
.main-header .header-lower .logo-box {
    padding:  0px;
}

.header-lower .container img{
  padding: 10px 25px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  height: 60px;
}

.menu-outer .navbar-header{
  display: none;
}
.mobile-menu .nav-logo {
    background: #000;
    padding: 20px 20px;
}
.mobile-menu .close-btn {
    background: red;
    color: #fff;
}
.menu-box p{
   background: linear-gradient(135deg, rgb(240, 179, 119), rgb(252, 166, 166));
   margin-bottom: 0;
   padding: 10px;
   font-weight: 500;
   font-size: 15px;
}
.main-header .mobile-menu .navigation li.dropdown .dropdown-btn:after {
    border-left: 0px solid #dddddd;
}
.mobsocial{
  background: #000;
}

@media screen and (max-width: 1200px) {
.header-lower .auto-container{
  margin-top: 20px;
}
.hero_section {
  margin-top: -122px;
}
}
@media screen and (max-width: 576px) {
.hero_section .container {
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
}
.main-header{
  padding-right: 16px;
  padding-left: 16px;
}
}

.call-btn-container {
  display: inline-block;
  perspective: 1000px; /* subtle 3D effect */
}

.animated-call-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #fe0000, #ff7e00); /* subtle gradient */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 59, 59, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-call-btn .btn-icon {
  margin-right: 0.8rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2; /* above the wave */
}

.animated-call-btn .btn-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%; /* bigger ripple for full coverage */
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: wave 2s infinite;
  z-index: 1; /* behind the text and icon */
  pointer-events: none; /* don’t block clicks */
}

@keyframes wave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.animated-call-btn:hover {
  color: #fff;
}

.animated-call-btn:hover .btn-icon {
  transform: rotate(-20deg);
}

.animated-call-btn .btn-text {
  position: relative;
  z-index: 2; /* above the wave */
}




/* ===== HERO SECTION ===== */
.hero_section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

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

/* ===== LAYOUT ===== */
.hero_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ===== LEFT CONTENT ===== */
.left_content {
  flex: 1;
  color: #fff;
}

.left_content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.left_content p {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.95;
  color: #eee;
}

/* ===== RIGHT FORM ===== */
.right-form {
  flex: 0 0 400px;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #fe0000, #fe0000); /* subtle gradient */
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
}

/* ===== FORM GRID ===== */
.form-row {
  display: flex;
  gap: 12px;
  padding: 0 20px;
  margin-top: 15px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  padding: 0 20px;
  margin-top: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff0000;
}

.form-btn {
  margin: 20px;
  width: calc(100% - 40px);
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-btn:hover {
  background: #cc0000;
}
 .hdbtn2{
    display: none;
  }



.hero_formc .wpcf7 input,
.hero_formc .wpcf7 textarea,
.hero_formc .wpcf7 select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.hero_formc .wpcf7 textarea {
    height: 100px;
}

/* Make CF7 button fit perfectly inside parent container */
.hero_formc .wpcf7-submit {
    width: calc(100% - 36px)!important;     
    background: #ff0000;        
    color: #fff;
    margin: 10px 20px 0 20px;
}

/* Hover effect */
.hero_formc .wpcf7-submit:hover {
    background: #ff0000;
}
.quote-form textarea {
    min-height: auto;
    height: 120px;
}
.quote-form input[type=submit] {
    background: linear-gradient(135deg, #e6392a, #ff5a3d);
}



.smh-flow-section {
  padding: 30px 0px;
  background: #f4f7fa;
}
.smh-flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Cards */
.smh-card {
  width: 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}

.smh-card h4 {
  padding: 14px 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.smh-card img {
  width: 60px;
  margin: 20px auto 12px;
}

.smh-card p {
  padding: 0 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Arrows */
.smh-arrow {
  width: 90px;
  height: 4px;
  background: #fe0000;
  position: relative;
}

.smh-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #fe0000;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Colors */
.smh-blue h4 { background: #5a9bd5; }
.smh-lightblue h4 { background: #6bb3df; }
.smh-orange h4 { background: #f39c3d; }
.smh-green h4 { background: #93bf55; }
.smh-navy h4 { background: #2f4f6f; }

/* Tablet */
@media (max-width: 1024px) {
  .smh-flow-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }

  .smh-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .smh-flow-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: center;
    padding: 0 20px;
    gap: 10px;
  }
  .smh-card {
    width: 100%;
  }
  .smh-arrow {
    display: none;
  }
}
@media (max-width: 440px) {
  .smh-flow-wrapper {
    padding: 0 0px;
  }
  .smh-card h4 {
    padding: 10px 6px;
    font-size: 14px;
}
.smh-card p {
    padding: 0 10px 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
}

.quick_enquiry_btn{
  display: none;
}
.quick_enquiry_form{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 10px;
  background: transparent!important;
  padding: 0!important;
}
.close_icon{
  position: absolute;
  top: 10px;
  right: 20px;
  height: 30px;
  width: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: 20px;
  border-radius: 100%;
}

.quick-enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9998;
}

.quick_enquiry_form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
}

/* Active states */
.quick-enquiry-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick_enquiry_form.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.story-one_content-outer {
    padding-right: 40px;
}
.story-one_image{
  border-radius: 0!important;
  border: 4px solid #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* ===== Enhanced Card Design ===== */
.nsg-card-enhanced .nsg-services-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    height: 100%;
}

/* Image = Blue top area (in your case image) */
.nsg-card-enhanced .nsg-services-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* Card content */
.nsg-card-enhanced .nsg-services-content {
    text-align: center;
}


/* Button style like sample */
.nsg-card-enhanced .nsg-services-content .rd_more{
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: #000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}




/* ===== SECTION WRAPPER ===== */
.nsg-gradient-section {
/*     background: linear-gradient(135deg, #fe0000 0%, #ff7e00 45%, #fe0000 100%); */
	background: #f4f7fa;
    padding: 60px 0px;
}


/* ===== HEADER ===== */
.nsg-gradient-header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
}

.nsg-gradient-header h2 {
    margin-bottom: 16px;
    color: #222;
}

.nsg-gradient-header p {
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.95;
    color: #222;
}

/* ===== CARD GRID ===== */
.nsg-gradient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.nsg-feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Decorative shape */
.nsg-feature-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fe0000, #ff7e00);
    border-radius: 50%;
    opacity: 0.12;
}

/* Hover effect */
.nsg-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}


/* ===== CARD CONTENT ===== */
.nsg-feature-card h3 {
    color: #111111;
    font-size: 18px;
}

.nsg-feature-card p {
    color: #444444;
}

.blog_title{
  width: 880px;
}
.consection{
   background: #f4f7fa;
}
.blog_section{
  background: #fff;
}
.blog_section .inner-container {
    background: transparent;
}
.blog_section .news-block_one-image {
    border-radius: 0px;
}
.blog_section .news-block_one-content{
   background: #111!important;
}
.blog_section .news-block_one-content ul li{
   color: #ff7e00!important;
}
.blog_section .news-block_one-content a{
   color: #ff7e00!important;
}
.blog_section .news-block_one-content h4 a{
   color: #fff!important;
}
.footer-contact_list li span {
    border-radius: 5px;
    border: 0px dashed var(--main-color);
}

.footer_socials a {
  border-radius: 5px;
  font-size: 18px;
}

.main-footer .footer-bottom {
    margin-bottom: -5px;
    background: #000;
}
.main-footer .footer-bottom:before {
    background-color: #000;
}

.skyline-faq {
  background: linear-gradient(135deg, #f4f7fa, #f4f7fa);
}

/* Section title */
.skyline-faq .sec-title_heading {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.skyline-faq .sec-title_text {
  max-width: 760px;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* Accordion container */
.skyline-faq .accordion-box {
  margin-top: 40px;
}

/* Individual FAQ item */
.skyline-faq .accordion.block {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.skyline-faq .accordion.block:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Question button */
.skyline-faq .acc-btn {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
}

.skyline-faq .acc-btn:hover {
  color: #ff7e00;
}

/* Active state */
.skyline-faq .acc-btn.active {
  color: #ff7e00;
}

/* Plus icon */
.skyline-faq .icon-outer {
  width: 34px;
  height: 34px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.skyline-faq .acc-btn.active .icon-outer {
  background: #fe0000;
}

.skyline-faq .acc-btn.active .icon {
  color: #ffffff;
}

/* Answer content */
.skyline-faq .acc-content {
  border-top: 1px solid #e5e7eb;
}

.skyline-faq .acc-content .content {
  padding: 18px 24px 24px;
}

.skyline-faq .acc-content .text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #475569;
}

/* Mobile optimisation */
@media (max-width: 767px) {
  .skyline-faq .sec-title_heading {
    font-size: 28px;
  }

  .skyline-faq .acc-btn {
    font-size: 16px;
  }
}




/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nsg-gradient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog_title{
  width: 100%;
}
}

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



/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero_row {
    flex-direction: column;
    text-align: center;
  }

  .left_content p {
    margin: 0 auto;
  }

  .right-form {
    width: 100%;
    max-width: 420px;
  }
  .quick_enquiry_btn{
    display: block;
  }
}
@media (max-width: 768px) {
  .hdbtn1{
    display: none;
  }
  .hdbtn2{
    display: block;
  }
}
@media (max-width: 576px) {
  .hero_section {
    padding: 70px 20px;
  }

  .left_content h1 {
    font-size: 34px;
  }

  .left_content p {
    font-size: 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

.main-header .mobile-nav-toggler {
    font-size: 28px;
    line-height: 44px;
    color: #fe0000;
    font-weight: 700;
}
.main-header .main-menu .navigation > li > ul  {
    border-radius: 5px;
}
.main-header .main-menu .navigation > li > ul li  {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.main-header .main-menu .navigation > li > ul > li > a:before {
    display: none;
}
.main-header .main-menu .navigation > li > ul > li:hover > a {
    color: var(--main-color);
    padding-left: 0px;
}
.left_content .animated-call-btn{
    margin-top: 20px;
}
.hdbtn2{
    width: fit-content;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 555555;
    animation: zoomPulse 1.8s ease-in-out infinite;
    transform-origin: center;
}
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hdbtn2 a{
   font-size: 0.9rem!important;
       padding: 0.5rem 0.8rem;
}
.hdbtn2 a i{
   font-size: 1rem!important;
    margin-right: -6px;
}
.footer-logo img{
  max-width: 280px;
}



@media only screen and (max-width: 1400px) {
  .hero_section h1{
      font-size: 36px !important;
      line-height: 42px!important;
  }
}
@media only screen and (max-width: 1300px) {
  .story-one_content-outer {
    padding-right: 0px;
  }
  h2{
    font-size: 36px!important;
  }
}
@media only screen and (max-width: 480px) {
    .main-header {
        min-height: 80px!important;
    }
}
.hero_form_main {
    display: none;
}
@media only screen and (max-width: 991px) {
    .hero_form1 {
        display: none;
    }
    .hero_form2 {
        display: flex;
        justify-content: center;
    }
    .hero_form_main {
    display: flex;
    justify-content: center;
   }
}

.hero_form_main{
   background: linear-gradient(135deg, #ebc6c6, #f7d9bb); /* subtle gradient */
  padding: 40px 0;
}
@media only screen and (max-width: 576px) {
.form-card {
    width: 100%;
}
}
@media only screen and (max-width:380px) {
.form-card {
    width: 350px;
}
}


@media only screen and (max-width: 479px) {
    h2 {
        font-size: 30px !important;
        line-height: 38px!important;
    }
}
@media (max-width: 576px) {
    .hero_section {
        padding: 70px 0px;
    }
    .hero_section h1{
       font-size: 32px !important;
        line-height: 42px!important;
    }
}
@media only screen and (max-width: 380px) {
  .hero_section h1{
      font-size: 30px !important;
      line-height: 40px!important;
  }
}


.dropdown i{
  font-size: 14px;
}

.main-header .main-menu .navigation > li {
    margin-right: 25px;
}
@media only screen and (max-width: 1200px) {
  .dropdown i{
  display: none;
}
}
.news-block_one-more:before {
    height: 0px!important;
    display: none!important;
}


.blog_single_content h1{
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 20px;
}
.blog_single_content h2{
  font-size: 32px;
  line-height: 40px;
  margin-top: 40px;
}
.blog_single_content h3{
  font-size: 28px;
  line-height: 36px;
  text-transform: capitalize;
}

.blog_single_content ul li{
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: -10px;
}
.blog_single_content ul {
  margin-bottom: 15px;
}
.blog_single_content ol li{
  list-style-type: decimal;
  margin-bottom: -10px;
}
.blog_single_content ol {
  margin-bottom: 15px;
}
.post-widget .post .thumb img{
    height:90px;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}
@media (max-width: 768px) {
.blog_single_content h1{
  font-size: 32px;
  line-height: 40px;
}
.blog_single_content h2{
  font-size: 28px;
  line-height: 36px;
}
.blog_single_content h3{
  font-size: 24px;
  line-height: 32px;
}
.blog-detail_inner {
  padding: 0px;
  background: #fff;
}
}

.spaced_section h2{
  margin-bottom: 15px;
}
.spaced_section ul li {
    position: relative;
    padding-left: 25px;
}

.spaced_section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: #c62828; /* premium red */
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_main_form [type=button], [type=reset], [type=submit], button {
   background: #000;
   color: #fff;
   font-size: 18px!important;
}

.privacy_policy_sec ul li{
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: -10px;
}
.privacy_policy_sec h1{
  font-size: 36px;
}
.privacy_policy_sec h2{
  font-size: 32px;
  margin-top: 25px;
  margin-bottom: 10px;
}

 /* === Hero Section === */
        .quote-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
              box-sizing: border-box;
        }

        /* === Contact Info Section === */
        .contact-info {
            flex: 1 1 350px;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            box-sizing: border-box;
        }

        .contact-info h2 {
            color: #ff3b00;
            margin-bottom: 15px;
        }

        .contact-info p {
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .contact-info i {
            color: #ff3b00;
            margin-right: 10px;
        }

        /* === Quote Form Section === */
        .quote-form {
            flex: 1 1 600px;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
              box-sizing: border-box;
        }

        .quote-form h2 {
            color: #ff3b00;
            margin-bottom: 20px;
        }

        .quote-form form {
            display: flex;
            flex-direction: column;
        }

        .quote-form label {
            font-weight: 600;
            margin-bottom: 5px;
            margin-top: 15px;
        }

        .quote-form input,
        .quote-form select,
        .quote-form textarea {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 0.95rem;
            width: 100%;
            resize: none;
        }

        .quote-form select {
            cursor: pointer;
        }

        .quote-form textarea {
            min-height: 120px;
        }

        .quote-form button {
            margin-top: 20px;
            background: #ff3b00;
            color: #fff;
            border: none;
            padding: 15px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quote-form button:hover {
            background: #e63900;
        }
        .blocked_items .sc-contact-card{
         border: 1px solid #e63900;
         margin-top: 10px;
         margin-bottom: 20px;
         box-shadow: none;
        }
        .contact-info {
            padding: 30px 20px 0 20px;
        }
        /* === Responsive Adjustments === */
        @media(max-width: 991px) {
            .quote-content {
                flex-direction: column;
            }
        }

        @media(max-width: 575px) {
            .quote-hero h1 {
                font-size: 2rem;
            }

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

        @media(max-width: 400px) {
            .quote-content {
            margin-left: -20px;
          }
        }



/* --- Section Styling --- */
.projects-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

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

/* --- Project Row --- */
.project_row {
  margin-bottom: 60px;
}

.project_row h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
}

/* --- Videos Wrapper --- */
.videos_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* spacing between videos */
}

/* --- Individual Video Item --- */
.video_item {
  flex: 1 1 300px;  /* flexible width, minimum 300px */
  max-width: 600px; /* max width per video */
  border-radius: px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: #000;
}

/* --- Video / Iframe inside video_item --- */
.video_item video,
.video_item iframe {
  width: 100%;   /* full width of container */
  height: 380px;  /* auto height to maintain original aspect ratio */
  display: block;
  border: none;
  border-radius: 16px;
}

.hero_section {
    transition: background-image 0.5s ease-in-out;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .video_item {
    max-width: 45%; /* 2 videos per row approx */
  }
}

@media (max-width: 768px) {
  .video_item {
    max-width: 100%; /* single video per row on mobile */
  }
}




/* ================================
   Syncorp Projects Section
================================ */

.syncorp-projects-section {
    padding: 60px 0px;
    background: #f7f7f7;
}

.syncorp-section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Grid */
.syncorp-projects-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
}


/* Card */
.syncorp-project-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
    text-decoration: none;
	border: 5px solid #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Image */
.syncorp-project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* Overlay */
.syncorp-project-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 20px;
    background: linear-gradient(
        to top, rgba(0,0,0,1)
    );
    transition: bottom 0.45s ease;
}


/* Subtitle */
.syncorp-project-subtitle {
    display: block;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* Title */
.syncorp-project-title {
    font-size: 22px;
    color: #fff;
    line-height: 1.3;
}

/* Hover Effects */
.syncorp-project-card:hover .syncorp-project-image {
    transform: scale(1.08);
}

.syncorp-project-card:hover .syncorp-project-overlay {
    bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .syncorp-project-card {
        height: 420px;
    }

    .syncorp-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .syncorp-project-card {
        height: 360px;
    }
}


.project_image img{
	max-height: 420px;
	width: 100%;
	object-fit: cover;
}
.project_header h1{
	color: #222;
}
.project_header h5{
	font-weight: 700;
	margin-top: -10px;
}



.project_gallerysec{
	background: #f3f5f7;
	padding: 50px 0;
}
.project_gallery h2{
	text-align: center;
	margin-bottom: 30px;
	font-size: 32px;
}

.gal_ctitem{
	padding: 20px 20px 10px 20px;
}
.contactsec_gal h2{
	font-size: 32px;
}
.projecttopwrapper{
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 40px;
	align-items: center;
}

.slider-pro img.sp-image, .slider-pro img.sp-thumbnail {
    max-height: 560px!important;
	object-fit: cover;
}


.facebook_icon{
	background: #1977f3!important;
	border: none!important;
}
.instagram_icon{
	background: #833ab4!important;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  )!important;
	border: none!important;
}
.instagram_icon i{
	font-size: 24px;
	margin-top: 7px;
}

@media (max-width: 768px) {
   .projecttopwrapper{
	display: grid;
	grid-template-columns: 100%;
	gap: 40px;
	align-items: center;
}
	.contactsec_gal h2 {
    font-size: 30px!important;
		text-align: center;
}
	.syncorp-projects-grid {
    grid-template-columns:  auto;
}
	.syncorp-project-overlay {
    bottom: 0%;
}
	.syncorp-project-title {
    font-size: 18px;
}
	.syncorp-project-overlay {
    padding: 10px;
}
}




.fix_images .slider-pro img.sp-image, .fix_images .slider-pro img.sp-thumbnail {
  object-fit: contain;
  background: #222;
}


.blog_section img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.consection{
	background: #fff;
}
.blog_section{
	background: #f4f7fa;
}
.faq_home{
	background: #fff;
}


.recaptcha_div{
	margin-top: -10px;
	margin-bottom: 10px;
}
.rcd2{
	margin-top: 10px;
	margin-bottom: 10px;
}
.rcd3{
	margin: 10px 0 0px 20px;
}
.hero_formc form{
	padding-bottom: 30px;
}

