:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #d9ba2b;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #D93632;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --background: hsl(0, 0%, 98%);
    --foreground: hsl(220, 20%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 20%, 15%);
    --primary: hsl(0, 85%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(215, 20%, 95%);
    --muted-foreground: hsl(215, 15%, 45%);
    --border: hsl(215, 20%, 88%);
    --radius: 0.75rem;

    --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(210, 20%, 98%));
    --gradient-glow: linear-gradient(135deg, hsl(0, 85%, 55%, 0.08), hsl(0, 85%, 60%, 0.03));
    --shadow-card: 0 2px 15px -3px hsl(220, 20%, 30%, 0.08), 0 4px 6px -2px hsl(220, 20%, 30%, 0.05);
    --shadow-hover: 0 15px 35px -5px hsl(0, 85%, 55%, 0.15), 0 10px 20px -5px hsl(220, 20%, 30%, 0.1);

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}


body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* NAVBAR MAIN */
/* NAVBAR WRAPPER */
.navbar {
    width: 100%;
    display: flex;
    justify-content: center!important;
    padding: 18px 285px;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f8f8f9;
}

/* CONTAINER */
.nav-container {
    width: 102%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* CENTER EVERYTHING */
    align-items: center;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */
.nav-menu li a {
    text-decoration: none;
    font-size: 17px;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: var(--danger);
}

/* .nav-menu li a.active {
    color: var(--danger);
    font-weight: 600;
} */

/* DOTS BETWEEN MENU */
.dot {
    color: #888;
    font-size: 18px;
}

/* MOBILE HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.nav-logo img {
    height: 55px;     /* Adjust size */
    width: auto;
    margin-right: 30px;  /* Space between logo & menu */
    position: relative;
    right: 270%;
}


/* --------------------
      RESPONSIVE
-------------------- */

/* TABLET */
@media (max-width: 992px) {
    .nav-menu {
        gap: 25px;
    }
    .navbar {
        padding: 18px 20px;
    }
    .nav-logo img {
        height: 50px;
        position: relative;
        right: 140%;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
        left: 32%;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #f8f8f9;
        flex-direction: column;
        align-items: center;
        padding: 43px 0;
        display: none; /* hidden by default */
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        margin: -15px 0;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* HOME PAGE */

/* hero section in home pae */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
#currentSlide {
  background-image: url("../images/projects/project10.jpeg");
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* slide animations */
.slide-in {
  animation: slideIn 1s ease-in-out forwards;
}

.slide-out {
  animation: slideOut 1s ease-in-out forwards;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  color: #fff;
}

/* BORDER BOX */
.border-box {
  position: relative;
  padding: 60px;
  width: 525px;
  height: 445px;
   z-index: 2; 
}

/* LINES */
.top-line,
.bottom-line {
  position: absolute;
  height: 4px;
  background: white;
  width: 100%;
}

.top-line { top: 0; }
.bottom-line { bottom: 0; }

.left-top,
.left-bottom,
.right-top,
.right-bottom {
  position: absolute;
  width: 4px;
  height: 119px;
  background: white;
}

.left-top { left: 57; top: 0; }
.left-bottom { left: 57px; bottom: 0; }
.right-top { right: -60px; top: 0; }
.right-bottom { right: -60px; bottom: 0; }

/* TEXT */
.hero-title {
  position: absolute;
  top: 15%;
  width: 100%;
  text-align: center;
}

.small-title {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 20px;
}

.main-title {
  font-size: 73px;
  letter-spacing: 3px;
  color: var(--danger);
  text-transform: uppercase;
  position: relative;
  top: 22px;
}

.call-text {
  font-size: 24px;
  margin-top: 50px;
}

.call-text span {
  color: var(--danger);
}

/* TEXT FADE */
.animate-text {
  animation: fadeUp 1s ease forwards;
}


/* KEYFRAMES */
@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOut {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}



/*about section in home page*/

/* MAIN WRAPPER */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: Poppins, sans-serif;
}

/* GRID LAYOUT */
.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.about-left {
    flex: 1;
    min-width: 450px;
    position: relative;
    left: 5%;
}

/* SUBTITLE */
.section-title {
    position: relative;
    text-align: center;
    width: fit-content;
    margin: 60px auto;
    padding: 20px 60px;
}

/* ABOUT US */
.section-title h6 {
    font-size: 14px;
    letter-spacing: 6px;
    color: #557;
    margin-bottom: 10px;
}

/* Who We Are */
.section-title h2 {
    font-size: 45px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* LEFT BRACKET */
.left-bracket {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 90px;
    border-left: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

/* RIGHT BRACKET */
.right-bracket {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 90px;
    border-right: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

/* PARAGRAPH */
.about-desc {
    color: #666;
    line-height: 1.7;
    font-size: 16.5px;
    text-align: justify!important;
    margin-bottom: 40px;
}

/* QUOTE BOX */
.testimonial-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.left-side {
    position: relative;
    display: flex;
    align-items: center;
}

.person-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    color: var(--danger);
    /* yellow */
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    left: -25px;
    top: -10px;
}

.right-side {
    max-width: 600px;
}

.italic-text {
    font-size: 20px;
    color: #6d7b8a;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 10px;
}

.name {
    color: var(--danger);
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.role {
    letter-spacing: 5px;
    font-size: 13px;
    color: #000;
    margin-top: 5px;
}

.together {
    color: #666;
    line-height: 1.7;
    font-size: 16.5px;
    margin-bottom: 40px;
}

/* button */
.btn-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

/* COMMON STYLE */
.btn {
    padding: 10px 38px;
    /* Height same as screenshot */
    border-radius: 50px;
    /* Full pill shape */
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.btn-red {
    /* background: var(--danger); */
    color: #000;
    border-color: var(--danger);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Soft shadow */
}

.btn-outline {
    background: #fff;
    border-color: var(--danger);
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.20);
    background-color: var(--danger);
}



/* RIGHT IMAGE */
.about-right {
    flex: 1;
    min-width: 450px;
    text-align: right;
}

.about-img {
       /* width: 72%;
    max-width: 655px;
    height: 60vh;
    position: relative;
    left: 31%;
    margin-top: 244px; */
    
    
    width: 52%;
    /* max-width: 588px; */
    height: 64vh;
    position: relative;
    left: 40%;
    margin-top: 244px;
    bottom: 42px;
}


/* -------------------------------------------------- */
/* RESPONSIVE BREAKPOINTS */
/* -------------------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

     .section-title h2 {
        font-size: 30px;
    }
    .section-title p {
        font-size: 15px;
    }

    .testimonial-box {
        flex-direction: column;
        text-align: center;
    }

    .quote-icon {
        left: 0;
        top: -15px;
    }
     .about-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: justify;    /* keep justify on tablets */
        padding: 0 15px;       /* optional side padding */
    }
      .testimonial-box {
        gap: 20px;
    }

    .italic-text {
        font-size: 18px;
    }

    .person-img {
        width: 65px;
        height: 65px;
    }

    .quote-icon {
        font-size: 45px;
        left: -20px;
        top: -8px;
    }
    .about-right {
        min-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .about-img {
        width: 80%;
        left: 0;
        margin: 40px auto 0;
        height: auto;            /* prevent cropping */
    }
    
    
}

/* Mobile */
@media (max-width: 600px) {
    .section-title {
        padding: 15px 40px;
       /* right: 7%; */
    }

    .section-title h2 {
        font-size: 28px;
    }

    .left-bracket,
    .right-bracket {
        height: 60px;
        width: 25px;
    }

    
    .together {
        font-size: 15px;
    }

    .about-img {
        max-width: 95%;
    }

    .btn {
        padding: 10px 30px;
        font-size: 16px;
    }
        .about-desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 25px;
        text-align: justify;
        padding: 0px 83px;
        position: relative;
        right: 18%;
        /* justify-content: center; */
        display: flex;
    }
     .testimonial-box {
        flex-direction: column;
        text-align: center;
    }

    .left-side {
        justify-content: center;
    }

    .person-img {
        width: 60px;
        height: 60px;
        margin-right: 155px;
    }

    .quote-icon {
        font-size: 40px;
        left: 0;
        top: -15px;
    }

    .italic-text {
       font-size: 17px;
        text-align: center;
        margin-right: 101px;
        position: relative;
        right: 4%;
    }

    .name {
        font-size: 18px;
        position: relative;
        right: 15%;
    }

    .role {
        font-size: 12px;
        position: relative;
        right: 15%;
    }

    .together {
        font-size: 15px;
        margin-bottom: 25px;
        font-size: 15px;
        margin-bottom: 25px;
        margin-right: 100px;
        position: relative;
        right: 6%;
    }
    .btn-row{
        position: relative;
        right: 4%;
    }
    }

    @media (max-width: 576px) {
    .about-right {
        text-align: center;
        min-width: 100%;
    }

    .about-img {
        width: 100%;
        max-width: 296px;
        margin: 20px auto 0;
        left: -60px;
        height: auto;
        margin-right: 18px;
        margin-top: 62px;
    }
    .section-title {
        margin-bottom: 35px;
        padding: 0 37px;
        position: relative;
        right: 18%;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .section-title p {
        font-size: 14px;
    }
    .our_service{
        position: relative;
        left: 17%;  
    }
    .whoweare{
        text-align: center;
        position: relative;
        bottom: 47px;
    }
    .ourwork{
                position: relative;
        left: 18%;
    }
}
     



/* do you need setion in home page */

/* .hero {
    height: 90vh;
    background: url('assets/images/home/help.jpg') center/cover no-repeat;
    position: relative;
} */

/* Dark overlay */
/* .power-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45)!important;
}  

.power-section {
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/home/help.jpg") center/cover no-repeat;
    padding: 120px 0;
    display: flex;
    justify-content: flex-start;
}

.border-box {
    position: relative;
    padding: 70px 80px;
    margin-left: 100px;
} */

/* TOP LONG LINE WITH GAPS */
/* .border-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 0;
    border-top: 4px solid #fff;
} */

/* BOTTOM LONG LINE WITH GAPS */
/* .border-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 0;
    border-bottom: 4px solid #fff;
} */

/* LEFT TOP SHORT LINE */
/* .left-top1 {
    position: absolute;
    left: 37px;
    top: 0;
    height: 80px;
    width: 0;
    border-left: 4px solid #fff;
} */

/* LEFT BOTTOM SHORT LINE */
/* .left-bottom1 {
    position: absolute;
    left: 39px;
    bottom: 0;
    height: 80px;
    width: 0;
    border-left: 4px solid #fff;
} */

/* RIGHT TOP SHORT LINE */
/* .right-top1 {
    position: absolute;
    right: 39px;
    top: 0;
    height: 80px;
    width: 0;
    border-right: 4px solid #fff;
} */

/* RIGHT BOTTOM SHORT LINE */
/* .right-bottom1{
    position: absolute;
    right: 39px;
    bottom: 0;
    height: 80px;
    width: 0;
    border-right: 4px solid #fff;
} */

/* TEXT STYLES */
/* .small-text {
    color: #fff;
    letter-spacing: 6px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.big {
    font-size: 70px;
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.yellow { color: var(--danger); }
.white { color: #fff; } */

/* BUTTON */
/* .start-btn {
    margin-top: 40px;
    padding: 15px 35px;
    background:var(--danger);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.btn-row1{
 position: relative;
    top: 24%;
    left: 78%;
    transform: translate(-50%, -50%);
}

 .btn-row1 a {
    display: block;
    width: 160px;
    height: 46px;
    line-height: 46px;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    border: 3px solid var(--danger);
    color: black;
    font-size: 17.5px;
    font-family: arial;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: uppercase;
    transition: all .35s;
}

.btn-row1 a:before,
.btn-row1 a:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--danger);
  z-index: -1;
  transition: all .35s;
}

.btn-row1 a:before{
  opacity: .5;
}

.btn-row1 a:after{
  transition-delay: .2s;
}

.btn-row1 a:hover{
  color: #fff;
}

.btn-row1 a:hover:before,
.btn-row1 a:hover:after{
  top: 0;
} */

/* SECTION WITH SLIDE-IN IMAGE */
/* SECTION */
.power-section {
    position: relative;
    padding: 120px 0;
    display: flex;
    justify-content: flex-start;
    /* LEFT SIDE */
    align-items: center;
    color: white;
    overflow: hidden;
    padding-left: 80px;
    /* push content from left edge */
}

/* DARK OVERLAY */
.power-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* SLIDE-IN BACKGROUND */
.power-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: url("../images/home/help.jpg") center/cover no-repeat;
    z-index: 0;
    animation: slideBg 1.3s ease forwards;
}

@keyframes slideBg {
    to {
        left: 0;
    }
}

/* BORDER BOX LEFT SIDE */
/* .border-box {
  position: relative;
    padding: 60px;
    text-align: center;
    z-index: 2;
    width: 420px;
    left: 3%;
} */

/* TEXT ANIMATION */
.small-text {
    color: #fff;
    letter-spacing: 6px;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.small-text,
.big,
.btn-row1 a {
    opacity: 0;
    transform: translateY(18px);
}

.animate-text .small-text {
    animation: fadeUp 0.6s forwards 0.3s;
}

.animate-text .yellow {
    animation: fadeUp 0.6s forwards 0.6s;
    font-size: 58px;
    font-size: 60px;
    color: var(--bs-danger);
    text-align: center;
}

.animate-text .white {
    animation: fadeUp 0.6s forwards 0.9s;
    font-size: 58px;
    text-align: center;
}

.animate-text .btn-row1 a {
    animation: fadeUp 0.6s forwards 1.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FULL LINES */
.top-line1,
.bottom-line1 {
    position: absolute;
    height: 4px;
    background: white;
    left: 0;
    width: 0;
}

.top-line1 {
    top: 0;
    animation: lineGrow 1s forwards;
}

.bottom-line1 {
    bottom: 0;
    animation: lineGrow 1s forwards 0.5s;
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

/* CORNER BORDERS */
.left-top1,
.left-bottom1,
.right-top1,
.right-bottom1 {
    position: absolute;
    width: 4px;
    background: white;
    height: 0;
}

.left-top1 {
    left: 0;
    top: 0;
    animation: cornerGrow 1s forwards 0.3s;
}

.left-bottom1 {
    left: 0;
    bottom: 0;
    animation: cornerGrow 1s forwards 0.6s;
    height: 190px !important;
}

.right-top1 {
    right: 0;
    top: 0;
    animation: cornerGrow 1s forwards 0.9s;
}

.right-bottom1 {
    right: 0;
    bottom: 0;
    animation: cornerGrow 1s forwards 1.2s;
    height: 190px !important;
}

@keyframes cornerGrow {
    to {
        height: 90px;
    }
}

/* BUTTON */
/* .btn-row1 a {
    display: inline-block;
    padding: 12px 32px;
    background: #dc3545;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
} */
.start-btn {
    margin-top: 40px;
    padding: 15px 35px;
    background: var(--danger);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-row1 {
    position: relative;
    top: 19%;
    left: 79%;
    transform: translate(-50%, -50%);
}

.btn-row1 a {
    display: block;
    width: 160px;
    height: 46px;
    line-height: 46px;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    border: 3px solid var(--danger);
    color: black;
    font-size: 16.5px;
    font-family: arial;
    position: relative;
    overflow: hidden;
    background: transparent;
    text-transform: uppercase;
    transition: all .35s;
}

.btn-row1 a:before,
.btn-row1 a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: var(--danger);
    z-index: -1;
    transition: all .35s;
}

.btn-row1 a:before {
    opacity: .5;
}

.btn-row1 a:after {
    transition-delay: .2s;
}

.btn-row1 a:hover {
    color: #fff;
}

.btn-row1 a:hover:before,
.btn-row1 a:hover:after {
    top: 0;
}



/* -------------------------------------- */
/* RESPONSIVENESS */
/* -------------------------------------- */

/* TABLET */
@media (max-width: 992px) {
    .power-section {
        padding: 100px 40px;
        text-align: center;
        justify-content: center;
    }

    .small-text {
        letter-spacing: 4px;
        font-size: 15px;
        text-align: center;
    }

    .animate-text .yellow {
        font-size: 55px;
    }

    .animate-text .white {
        font-size: 40px;
    }

    .btn-row1 {
        margin-top: 30px;
        display: flex;
        /* justify-content: center; */
        margin-left: -10px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .power-section {
        padding: 80px 25px;
        text-align: center;
    }

    .small-text {
        letter-spacing: 3px;
        font-size: 14px;
    }

    .animate-text .yellow {
        font-size: 40px;
    }

    .animate-text .white {
        font-size: 32px;
    }

    .btn-row1 a {
        width: 150px;
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
}


/* home service section */

/* Section Background */
.services-section {
    display: flex;
    gap: 40px;
    padding: 60px 0;
    justify-content: center;
}

/* GRID FOR 2 ROWS (3 cards per row) */
.services-grid {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center !important;
    padding: 60px 106px;
    margin-left: 188px;
}

/*.service-card {
    width: 340px;
    background: #fff;
    padding: 20px 11px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
    height: 315px;
}*/

.service-card {
    /* 1. Reset any floats or fixed widths from main.css */
    float: none !important;
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important; /* Limits width to center properly */
    
    /* 2. Force Centering */
    margin-left: auto !important;
    margin-right: auto !important;

    /* 3. Your Grid Layout */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
    margin-bottom: 120px !important;
}

.service_content {
    position: relative;
    left: 8%;
    /* text-align: justify; */
    padding: 20px;
    bottom: 30%;
}

.service-card-link {
    text-decoration: none!important;
    color: inherit;
    display: block;
}
.service-card-link :hover{
    color: black;
}
.service-card {
    cursor: pointer;
    text-decoration: none;
}

/* ICON BOX EXACT TOP LEFT */
/* .icon-box {
    width: 60px;
    height: 60px;
    border: 2px solid #dce5e1;
    border-radius: 15px;
    background: #f8fffc;
    position: absolute;
    top: 44px;   
    left: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.icon-box i {
    font-size: 30px;
    /* font-size: 25px; */
}

/* .icon-box i:hover{
    color: white;
} */

.service-card:hover .icon-box i {
    color: #fff !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid #4f4f4f;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease-in;
    right: 8%;
    top: 10%;
}

/* Circle 1 */
.icon-box:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* Circle 2 */
.icon-box:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: var(--danger);
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* Hover Effects */
.icon-box:hover {
    border: 1px solid var(--danger);
}

.icon-box:hover:before {
    top: -35%;
    background-color: var(--danger);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.icon-box:hover:after {
    top: -45%;
    background-color: var(--danger);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


/* To make sure icon stays visible on hover */
.icon-box img {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 2;
}


.service-type {
    color: var(--danger);
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    /* color: black; */
}

.desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more {
    font-weight: 500;
    font-size: 13px;
    text-decoration: none !important;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
    color: #000;
}

.learn-more:hover {
    color: var(--danger);
}

/* Trigger icon-box hover effect when the whole card is hovered */
.service-card:hover .icon-box {
    border: 1px solid var(--danger);
}

.service-card:hover .icon-box:before {
    top: -35%;
    background-color: var(--danger);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.service-card:hover .icon-box:after {
    top: -45%;
    background-color: var(--danger);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* ------------------------------------ */
/* RESPONSIVE BREAKPOINTS */
/* ------------------------------------ */

/* TABLET – 2 CARDS PER ROW */
@media (max-width: 992px) {
     .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /*.service-card {
        max-width: 300px;
    }*/
    
    .service-card {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
}

/* MOBILE – 1 CARD PER ROW */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
    }

    h3 {
        font-size: 19px;
    }

    .desc {
        font-size: 14px;
    }
    /* .section-title {
        padding: 15px 40px;
       right: 17%;
    } */
}

@media (max-width: 480px) {
    .service-card {
        padding: 20px 15px 25px;
        position: relative;
        /*right: 58%;*/
    }

    /* .service_content {
        bottom: 0;
    } */

    .service-card h3 {
        font-size: 20px;
    }

    .desc {
        font-size: 14px;
    }
}
.section-title h2 {
        white-space: normal !important;
        word-break: break-word;
    }
    @media (max-width: 768px) {
    .section-title h2 {
        display: block;
        white-space: normal;
    }

    .section-title h2 span {
        display: block;   /* forces new line */
    }
}



/* our team section in home page */

/* .team-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
}

.team-card {
    width: 346px;
    height: 465px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
} */

/* Overlay */
/* .team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: .4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-card:hover img {
    transform: scale(1.1);
} */

/* Role + Name */
/* .team-overlay .role {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
}

.team-overlay h3 {
    color: var(--danger);
    font-size: 22px;
    margin: 10px 0 20px;
}

.team-overlay h3:hover {
    color: white;
} */

/* NEW BORDER CLASS */
/* .team-border {
    width: 180px;
    height: 1px;
    margin: 0 auto 20px;
    position: relative;
}

.team-border span {
    position: absolute;
    height: 2px;
    width: 60px;
    background: var(--danger);
}

.team-border span:nth-child(1) {
    left: 0;
}

.team-border span:nth-child(2) {
    right: 0;
} */

/* Icons */
/* .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.social-icons i {
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons i:hover {
    color: var(--danger);
} */


/* ============================
   TABLET RESPONSIVE
============================ */
/* @media (max-width: 992px) {
    .team-section {
        gap: 30px;
        padding: 40px 0;
    }

    .team-card {
        width: 300px;
        height: 420px;
    }

    .team-overlay h3 {
        font-size: 20px;
    }
} */


/* ============================
   MOBILE RESPONSIVE
============================ */
/* @media (max-width: 576px) {
    .team-section {
        gap: 25px;
    }

    .team-card {
        width: 90%;       
        max-width: 320px;
        height: 400px;
        margin: 0 auto;
    }

    .team-overlay h3 {
        font-size: 18px;
    }

    .team-overlay .role {
        font-size: 12px;
    }

    .team-border {
        width: 140px;
    }

    .team-border span {
        width: 45px;
    }
     .team-section {
        flex-direction: column;   
        align-items: center;
    }

    .team-card {
        width: 90%;
        max-width: 350px;
        height: auto;
    }
    .ourwork{
        position: relative;
        left:17%;
    }
} */

/* counter section in home page */

.counter-section {
    position: relative;
    background: url("../images/home/counter-bg.jpeg") center/cover no-repeat;
    padding: 100px 0;
    z-index: 1;
    margin-top: 80px;
}

/* Dark overlay */
.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* dark overlay */
    z-index: -1;
}

/* Text styling on top of overlay */
.counter-section h3 {
    color: white;
    position: relative;
    z-index: 2;
    font-size: 50px;
    font-weight: 400;
}

.counter-section p {
    color: white;
    position: relative;
    z-index: 2;
    font-weight: 600;

}

.counter {
    font-size: 36px;
    font-weight: bold;
}

/* FOOTER PAGE */

.custom-footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 20px;
    font-family: Arial, sans-serif;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* IMPORTANT — aligns all headings in one straight row */
    gap: 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.quicklink {
    position: relative;
    left: 25%;
}

.footer-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-title i {
    color: #ff3d3d;
    margin-right: 10px;
    font-size: 22px;
}

.footer-title span {
    color: white;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff3d3d;
}

/* Contact Section */
.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: #ccc;
}

.contact-list i {
    color: #ff3d3d;
    margin-right: 10px;
    margin-top: 3px;
}



/* Footer bottom area */
.footer-bottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #aaa;
    font-size: 15px;
}

.sinaura{
text-decoration: none!important;
color: var(--danger);
}

.sinaura:hover{
color: var(--danger);
}
.place{
    margin-left: 24px;
    margin-top: -10px;
}

@media (max-width: 480px) {
    .footer-bottom {
        margin-top: 18px;
        padding-top: 10px;
        font-size: 12.5px;
        line-height: 1.5;
    }

    .sinaura {
        display: inline-block;
        margin-top: 4px;   /* better touch spacing */
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 22px;
        padding-top: 12px;
        font-size: 15px;
    }
}


/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Tablets (max-width 992px) */
@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        gap: 30px;
    }

    .footer-col {
        min-width: 45%; /* Two columns */
    }

    .quicklink {
        left: 0; /* Remove too much offset */
    }
    .phone{
text-align: center;
    }
}

/* Mobile (max-width 576px) */
@media (max-width: 576px) {
    .footer-container {
        flex-direction: column; /* Stack vertically */
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        min-width: 100%; /* One column */
    }

    .footer-title {
        justify-content: center;
    }

    .quicklink {
        left: 0; /* Reset alignment */
    }
    .contact-list{
        position: relative;
        left: 20%;
        text-align: justify;  
    }
    .phone{
        position: relative;
        left:7%
    }
    /* .mail{
        position: relative;
        left:10%
    } */
    /* .location{
        position: relative;
        left:10%
    } */
}


/* CONTACT PAGE */

.inner-hero {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 90px;
    color: var(--danger);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 28, 48, 0.65);
    /* dark blue overlay like demo */
    z-index: 1;
}

.contact_hero {
    position: relative;
    z-index: 2;
}

.contact_hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
    /* very small gap so breadcrumb comes close */
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    margin-right: 766px;
    background-color: transparent !important;
}


.breadcrumb a {
    color: #fff;
    text-decoration: none !important;
    font-size: 18px;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #fff;
    font-size: 18px;
}

.breadcrumb p {
    color: var(--danger);
    font-size: 18px;
    margin: 0;
}

/* =============================
   RESPONSIVE DESIGN
============================= */

/* Tablets */
@media (max-width: 992px) {

    .inner-hero {
        padding-left: 40px;
        height: 320px;
    }

    .contact_hero h1 {
        font-size: 45px;
    }

    .breadcrumb {
        gap: 8px;
    }
}

/* Mobiles */
@media (max-width: 576px) {

    .inner-hero {
        padding-left: 20px;
        justify-content: center;
        text-align: center;
        height: 280px;
    }

    .contact_hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .breadcrumb {
        justify-content: center;
        margin-right: 0 !important; /* Remove your old margin-right: 766px */
    }

    .breadcrumb a,
    .breadcrumb span,
    .breadcrumb p {
        font-size: 16px;
    }
}

.contact-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* LEFT SIDE --------------------- */

.left-form {
    width: 50%;
    padding: 70px;
    background: #D93632;
}

.left-form h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 40px;
    color: white;
}

.form-group {
    position: relative;
    margin-bottom: 50px;
}

label {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 14px;
    color: #000;
    transition: 0.3s;
    pointer-events: none;
}

input,
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    padding: 8px 30px 6px 0;
    font-size: 16px;
    outline: none;
}

/* FLOATING LABEL EFFECT */
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    top: -14px;
    font-size: 12px;
    opacity: 0.7;
}

/* From Uiverse.io by Navarog21 */
.submit-btn {
    width: 10em;
    position: relative;
    height: 3.5em;
    border: 3px ridge white;
    outline: none;
    background-color: white;
    color: black;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.submit-btn::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 3%;
    width: 95%;
    height: 10%;
    background-color: white;
    transition: 0.5s;
    transform-origin: center;
}

.submit-btn::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 10%;
    background-color: white;
    transition: 0.5s;
}

.submit-btn:hover::before,
button:hover::after {
    transform: scale(0)
}

.submit-btn:hover {
    box-shadow: inset 0px 0px 25px var(--danger);
}

/* RIGHT ICON IN INPUT */
.icon {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 14px;
    color: white;
}


/* ====================================
   RESPONSIVE BREAKPOINTS
==================================== */

/* TABLETS (992px) */
@media (max-width: 992px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .left-form {
        width: 100%;
        padding: 50px;
    }

    .left-form h2 {
        font-size: 26px;
    }

    input, textarea {
        font-size: 14px;
    }
}

/* MOBILE (576px) */
@media (max-width: 576px) {

    .left-form {
        padding: 35px 20px;
    }

    .left-form h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 25px  !important;
    }

    input, textarea {
        padding-right: 25px;
    }

    .icon {
        top: 8px;
        font-size: 12px;
    }

    .submit-btn {
        width: 100%;
        height: 3.2em;
        font-size: 15px;
    }
}

/* SUBMIT BUTTON */
/* .submit-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
} */

/* RIGHT SIDE --------------------- */

.right-info {
    width: 50%;
    padding: 80px 180px;
    background: #fff;
}

/* ICON LEFT + TEXT RIGHT (ROW) */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.info-icon {
    font-size: 20px;
    color: var(--danger);
    margin-top: 5px;
}

.info-text {
    position: relative;
    margin-top: 5px;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 500;
}

.info-text p {
    color: #444;
    line-height: 22px;
}

/* ----------- TABLET (max-width: 992px) ----------- */
@media (max-width: 992px) {
    .right-info {
        width: 100%;
        padding: 50px 60px;
        text-align: center;
    }

    .info-box {
        gap: 12px;
        justify-content: center;
    }

    .info-icon {
        font-size: 26px;
    }

    .info-text h3 {
        font-size: 18px;
    }

    .info-text p {
        font-size: 15px;
        line-height: 21px;
    }
}

/* ----------- MOBILE (max-width: 576px) ----------- */
@media (max-width: 576px) {
    .right-info {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .info-box {
        flex-direction: column; 
        align-items: center;      /* center content vertically */
        gap: 8px;
    }

    .info-icon {
        font-size: 24px;
    }

    .info-text h3 {
        font-size: 17px;
    }

    .info-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ABOUT PAGE */
.our-gallery {
    text-align: center;
}

.gallery-section {
    background: #151e2b !important;
    /* same dark blue */
    padding: 70px 0 0 0;
}

/* Heading area */
.gallery-heading {
    text-align: center;
    color: white;
}

.gallery-heading .line {
    width: 60px;
    height: 3px;
    background: #d1a11f;
    /* golden color */
    margin: 0 auto 15px auto;
}

.gallery-heading h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white;
}

.gallery-heading h2 span {
    color: #d1a11f;
    /* gold for word GALLERY */
}

/* Image row */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}

.gallery {
    color: var(--danger);
}

.gallery-images img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    /* no spacing between images */
    margin-top: 55px;

}

/* IMAGE BOX */
.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
}

/* BORDER BOX */
.squre-border {
    border: 3px solid var(--danger);
    padding: 33px 25px;
    opacity: 0;
    transform: scale(0.7);
    transition: .4s ease;
}

/* TEXT */
.squre-border h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
}

/* HOVER EFFECT */
.img-box:hover .overlay {
    opacity: 1;
}

.img-box:hover .squre-border {
    opacity: 1;
    transform: scale(1);
}

.img-box:hover .squre-border h3 {
    opacity: 1;
    transform: translateY(0);
}


/* ----------- TABLET (max-width: 992px) ----------- */
@media (max-width: 992px) {
    .gallery-images,
    .gallery-row {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row */
        gap: 10px;
    }

    .img-box img {
        height: 300px;
    }

    .squre-border {
        padding: 30px 40px;
    }

    .squre-border h3 {
        font-size: 22px;
    }

    .gallery-heading h2 {
        font-size: 28px;
        letter-spacing: 3px;
    }
}

/* ----------- MOBILE (max-width: 576px) ----------- */
@media (max-width: 576px) {
    .gallery-images,
    .gallery-row {
        grid-template-columns: 1fr; /* 1 image per row */
        gap: 10px;
    }

    .img-box img {
        height: 250px;
    }

    .squre-border {
        padding: 20px 30px;
    }

    .squre-border h3 {
        font-size: 20px;
    }

    .gallery-heading h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .gallery-heading .line {
        width: 50px;
        height: 2px;
        margin-bottom: 10px;
    }
}




.why-section {
    background: #ffffff;
    /* ← WHITE BACKGROUND */
    padding: 70px 0;
}

/* Centered Title */
.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.why-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD STYLE */
.why-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ICON */
.whycard_icon-box {
    width: 55px;
    height: 55px;
    background: #f1f1f1;
    color: red;
    font-size: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.why-card:hover .whycard_icon-box {
    background: var(--danger);
    /* red */
    color: #fff;
    /* icon turns white */
}

.why-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.training-section {
    background: #ffffff;
    /* WHITE BACKGROUND */
    padding: 70px 0;
}

/* Title */
.training-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.training-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 10px auto 50px auto;
}

/* GRID */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.training-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border-top: 4px solid #e74c3c;
    /* RED TOP BORDER */
}

.training-card.blue {
    border-top: 4px solid #2e5cff;
    /* BLUE TOP BORDER */
}

/* CARD HOVER */
.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Top line icon + duration */
.training-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.training-card-top i {
    color: #e74c3c;
    font-size: 24px;
}

.training-card.blue .training-card-top i {
    color: #2e5cff;
}

/* Duration text */
.duration {
    color: #777;
    font-size: 14px;
}

.training-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
}

.training-card p {
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .training-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICE PAGE */

/* authorised dealer section style */

.dealer-section {
    padding: 60px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

/* set a comfortable width so text wraps */
.dealer-text {
    max-width: 560px;
    /* tweak to match your layout */
}

/* make paragraphs fully justified, including the last line */
.dealer-text p {
    margin: -30px 0 15px;
    /* text-align: justify; */
    text-align: left !important;
    /* Normal spacing */
    text-align-last: left !important;
    /* Fix last line spacing */
    text-justify: auto !important;
    /* Remove stretching */
    line-height: 1.6;
}

/* fallback / extra: ensure the last line stretches in browsers that don't support text-align-last */
.dealer-text p::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 0;
}

.dealer-container {
    max-width: 1080px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.dealer-text {
    flex: 1;
    text-align: justify;
}

.dealer-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--danger);
    text-align: center;
    margin-top: 85px;
}

.dealer-subtitle,
.dealer-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.dealer-logo img {
    width: 310px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-right: 46px;
    margin-bottom: 85px;
}



/* ----------- TABLET (max-width: 992px) ----------- */
@media (max-width: 992px) {
    .dealer-container {
        flex-direction: column; /* stack text and logo */
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .dealer-text {
       max-width: 100%;
        text-align: justify;
        order: 1;
        margin-top: 24px;
        text-align: justify !important;
    }

    .dealer-logo img {
        width: 200px;
        margin: 0 auto 20px auto;
        order: 2; /* ensure image is second row */
    }

    .dealer-title {
        font-size: 28px;
        margin-top: 50px;
    }

    .dealer-subtitle,
    .dealer-desc {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* ----------- MOBILE (max-width: 576px) ----------- */
@media (max-width: 576px) {
    .dealer-section {
        padding: 40px 15px;
    }

    .dealer-title {
        font-size: 22px;
        margin-top: 30px;
    }

    .dealer-subtitle,
    .dealer-desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .dealer-logo img {
        width: 150px;
        margin-bottom: 20px;
    }

    .dealer-container {
        gap: 20px;
    }
}

.service-links {
    display: flex;
    justify-content: center;
    gap: 75px;
    margin: 175px 0;
    margin-top: 8px;
}

.service-links a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--danger);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.service-links a:hover {
    background: white;
    color: var(--danger);
}

/* Tablet */
@media (max-width: 992px) {
    .service-links {
        gap: 40px;
        margin: 100px 0 0 0;
    }

    .service-links a {
        padding: 10px 18px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .service-links {
        flex-direction: column;
        gap: 20px;
        margin: 50px 0 0 0;
        align-items: center;
    }

    .service-links a {
        width: 80%; /* make buttons full-width-ish */
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
    }
}

.service-content {
    position: relative;
    left: 1%;
    margin-top: 45px;
}

.service-detail-section {
    padding: 90px 55px;
    background: #fff;
}

.service-detail-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT IMAGE */
.service-image {
    padding-right: 10px;
}

.service-image img {
    width: 500px;
    max-width: 500px;
    border-radius: 10px;
    display: block;
    height: 459px;
    margin-top: 40px;
}



/* NUMBER + CATEGORY ROW */
.service-number {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

.service-number .num {
    font-size: 40px;
    font-weight: 300;
    color: #bfc2c7;
}

.service-number .category {
    font-size: 14px;
    letter-spacing: 1px;
    color: #7e8186;
    text-transform: uppercase;
}

/* TITLE */
.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.vertical-line {
    width: 3px;
    background: #d1caca;
    height: 100%;
    min-height: 450px;
    margin-top: 40px;
    margin-left: 118px;
}


/* DESCRIPTION */
.service-description {
    color: #4a4b4e;
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 30px;
    text-align: justify;
    /* makes left + right edges aligned */
}


/* ICON POINTS */
.service-points .point {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-left: 30px
}

.mv-icon {
    width: 45px;
    height: 45px;
    background: #fff5d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #ffb300; */
    font-size: 22px;
    border: 1px solid #ffe5a8;
    margin-left: 27px;
}

.mv-icon i {
    font-size: 25px;
}

/* POINT TEXT */
.point p {
    font-size: 16px;
    color: #43454a;
    margin: 5px;
}




/* .service-heading h3 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin: 0;
    text-align: center;
    margin-top: 105px;
} */

.approvals {
    margin-top: 10px !;
}

/* LEFT BRACKET */
/* .service-heading {
    margin-top: 10px;
} */
.service-heading {
    position: relative; /* important: parent for absolute brackets */
    margin-top: 10px;
    text-align: center;
}

.service-heading h3 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin: 0;
    margin-top: 105px;
}



/* LEFT BRACKET */
.left-bracket1 {
    position: absolute;
    left:75vh; /* start from left of the heading container */
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 69px;
    border-left: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

/* RIGHT BRACKET */
.right-bracket1 {
    position: absolute;
    right:76vh;; /* start from right of the heading container */
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 69px;
    border-right: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}
/* TABLET */
@media (max-width: 992px) {
    .service-heading h3 {
        font-size: 30px;
        margin-top: 80px;
    }

    .left-bracket1, .right-bracket1 {
        width: 28px;
        height: 60px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .service-heading h3 {
        font-size: 24px;
        margin-top: 160px;
    }

   .left-bracket1 {
        width: 22px;
        height: 50px;
        left: auto;
        margin-left: 21px;
    
    }
    .right-bracket1{
         width: 22px;
        height: 50px;
        right: auto;
        margin-left: 311px;
    }
    .service-heading{
        position: relative;
        left: 3%;
    }
}

.service-block {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    padding: 60px 0;
}

/* LEFT CONTENT */
.block-info {
    max-width: 520px;
    position: relative;
    left: 15%;
    margin-top: 48px;
}

.block-number span:first-child {
    font-size: 40px;
    color: #bfc2c7;
    font-weight: 300;
}

.block-label {
    font-size: 14px;
    color: #7e8186;
    letter-spacing: 2px;
}

.block-title {
    font-size: 28px;
    color: #222;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.block-text {
    color: #4a4b4e;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

/* ICON LIST */
.icon-list {
    /* display: flex;
    align-items: flex-start;
    gap: 40px; */
    /* adjust spacing */
    display: flex;
    gap: 30px;   
}

.icon-list .icon-row {
    /* display: flex;
    align-items: flex-start;
    gap: 15px; */
    display: flex;
    align-items: center;
    gap: 12px;
}

.approval-icon {
    width: 45px;
    height: 45px;
    background: #fff5d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffe5a8;
}

.approval-icon i {
    font-size: 22px;
}

.icon-text {
    color: #43454a;
    margin: 0;
    font-size: 16px;
    line-height: 2.4;
}

/* RIGHT IMAGE */
/* .block-image img {
    width: 510px;
    height: 412px;
    border-radius: 10px; */
    /* object-fit: cover; */
    /* margin-right: 54px;
    margin-top: 40px;

} */

.block-image img {
    width: 100%;
    max-width: 510px;   /* keeps original size on large screens */
    height: 459px;   
    border-radius: 10px;
    margin-right: 54px;
    margin-top: 40px;
}


.training_div{
       /* position: relative; */
    margin-top: -88px;
}


.training_left-bracket {
    position: relative;
    left: 43%;
    top: 57%;
    bottom: 22px;
    transform: translateY(-46%);
    width: 33px;
    height: 60px;
    border-left: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

/* RIGHT BRACKET */
.training_right-bracket {
   position: relative;
    right: -60%;
    top: 47%;
    left: 830px;
    bottom: 81px;
    transform: translateY(-46%);
    width: 33px;
    height: 60px;
    border-right: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

@media (max-width: 992px) {
    .training_left-bracket
     {
        width: 28px;
        height: 50px;
    }
    .training_right-bracket{
        width: 28px;
        height: 50px;
    }
}
@media (max-width: 576px) {
    .training_left-bracket
     {
        width: 22px;
        height: 52px;
        position: relative;
        left: 28%;
        bottom: 15px;
    }
    .training_right-bracket{
       width: 23px;
        height: 50px;
        position: relative;
        left: 65%;
        top: -65px;
    }

    .training-heading {
        gap: 12px;
    }
}



/* ===========================
   RESPONSIVE  (TABLET)
=========================== */

@media (max-width: 992px) {

    .service-detail-wrapper,
    .service-block {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .service-image img{
    
            max-width: 308px;
        height: 300px;
        position: relative;
        left: 2%;
    }
    .block-image img {
        max-width: 90%;
        height: 300px;
        position: relative;
        left: 5%;
        margin-top: -5px;

    }
    /* .vertical-line {
        width: 60%;
        height: 3px;
        min-height: 3px;
        margin: 20px 0;
    } */

    .vertical-line {
    width: 3px;              /* force vertical */
    height: 60px;            /* small line */
    background: #d1caca;
    margin: 40px auto;       /* center it */
    flex-shrink: 0;          /* prevents flex stretching */
}

    .service-content,
    .block-info {
        width: 100%;
        margin-bottom: -60px;
        margin-top: -50px;
    
    }

    .service-title,
    .block-title {
        text-align: left;
        font-size: 28px;
    }

    .service-points .point {
        margin-left: 15px;   /* reduce left margin */
        gap: 12px;
    }
    
}


/* ===========================
   RESPONSIVE (MOBILE)
=========================== */

@media (max-width: 576px) {

    .service-title,
    .block-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .service-description
     {
        font-size: 15px;
        line-height: 1.7;
    }
    .vertical-line {
        height: 100%;
        min-height: 120px;
        width: 3px;
        margin: 90px auto;
    }
    .block-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
        margin-right: 100px;
    }

    .service-detail-wrapper,
    .service-block {
        gap: 25px;
        /* position: relative; */
        margin-bottom: -51px;
        margin-bottom: -47px;
        margin-top: 100px;
    }
    .whole_service{
        margin-top: -96px;
    }
    .approvals{
        margin-top: -50px;
    }
    .training_div{
        margin-top:-170px;
    }
    .mv-icon i,
    .approval-icon i {
        font-size: 24px;
    }
    .service-points .point {
        margin-left: 0;       /* fully aligned on mobile */
        gap: 10px;
        margin-bottom: 16px;
    }

    .icon-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-left: 45px;
    }

    /* Keep icon + text in one row */
    .icon-list .icon-row {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .approval-icon i {
        font-size: 24px;   /* adjust if needed */
    }

    .icon-text {
        font-size: 15px;
    }
   
}

/* PRODUCT PAGE */

/* MAIN SECTION */
.panel-hero-section {
    text-align: center;
    padding: 100px 20px 80px;
    background: linear-gradient(to bottom right, #fff7f7, #ffffff);
    border-radius: 20px;
    max-width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

/* LIGHT RED SOFT GLOW BACKGROUND */
.panel-hero-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: 50%;
    right: -100px;
    top: -50px;
    filter: blur(80px);
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    color: #d60000;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-icon {
    font-size: 18px;
}

/* TITLE */
.hero-product {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #1a1a1a;
}

.product-title span {
    color: #e60000;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 730px;
    margin: 20px auto 45px;
    line-height: 1.6;
}

/* STATS SECTION */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* EACH STAT ITEM */
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    /* border: 1px solid rgba(255, 0, 0, 0.25);
    background: rgba(255, 0, 0, 0.12); */
    border-radius: 12px;
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.4);
}

/* ICON BOX */
.stat-icon {
    font-size: 22px;
    color: #e00000;
}

/* TEXT */
.stat-item h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Stats */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: hsl(0, 85%, 55%, 0.1);
    border: 1px solid hsl(0, 85%, 55%, 0.2);
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.stat-text {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Products Section */
.products-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem 5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/*Product Card */
.card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gradient-card);
    box-shadow: var(--shadow-card);
    border: 1px solid hsl(215, 20%, 92%);
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: hsl(0, 85%, 55%, 0.3);
}

/* Card Image */
.card-image {
    position: relative;
    height: 12rem;
    background: var(--secondary);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, hsl(0, 0%, 100%, 0.8), transparent, transparent); */
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsl(0, 85%, 55%, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(0, 85%, 55%, 0.3);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    letter-spacing: 0.05em;
}

/* Card Content */
.card-content {
    padding: 1.25rem;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-title .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.card-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--card-foreground);
    letter-spacing: 0.025em;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 15px;
    color: hsl(220deg 11.32% 2.39% / 70%);
    margin-bottom: 0.5rem;
}

.features-list li::before {
    content: '▸';
    color: var(--danger);
    font-weight: 700;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(215, 20%, 88%, 0.5);
}

.benefits h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--danger);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.90rem;
    color: hsl(220deg 11.32% 2.39% / 70%);
}

.benefits-list .dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: var(--danger);
}

/* Card Button */
.card-button {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: hsl(0, 85%, 55%, 0.1);
    border: 1px solid hsl(0, 85%, 55%, 0.3);
    color: var(--danger);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.card-button:hover {
    background: var(--danger);
    color: var(--primary-foreground);
    box-shadow: 0 10px 20px -5px hsl(0, 85%, 55%, 0.2);
}

.card-button:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 4rem 1rem;
    background: hsl(0, 0%, 100%, 0.5);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.footer-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-content h2 {
        font-size: 1.875rem;
    }
}

.footer-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background: var(--danger);
    color: var(--primary-foreground);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.025em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 10px 30px -5px hsl(0, 85%, 55%, 0.3);
    transform: scale(1.05);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon base styles */
.icon {
    display: inline-block;
    vertical-align: middle;
}


/* PROJECTS PAGE */

.project-gallery-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.project-title-box {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.pg-subtitle {
    /* font-size: 14px; */
    letter-spacing: 2px;
    color: var(--danger);
    margin-bottom: 6px;
    font-weight: bold;
}

.pg-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Brackets */
/* .pg-left-bracket,
.pg-right-bracket {
    width: 60px;
    height: 3px;
    background: var(--danger);
    position: absolute;
    top: 100%;
} */

.pg-left-bracket {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    border-left: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

/* RIGHT BRACKET */
.pg-right-bracket {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    border-right: 4px solid var(--danger);
    border-top: 4px solid var(--danger);
    border-bottom: 4px solid var(--danger);
}

.pg-left-bracket {
    left: 40%;
}

.pg-right-bracket {
    right: 40%;
}

/* ----------------------------
     GALLERY — 3 IMAGES ROW
------------------------------ */
.project-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);   /* 3 images in a row */
    gap: 25px;                               /* ⬅ Gap between images */
    width: 90%;
    margin: auto;
    margin-top: 110px
}

.project-img-box {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}

.project-square-border {
    border: 3px solid var(--danger);
    padding: 26px 38px;
}

.project-square-border h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

/* Hover Effects */
.project-img-box:hover img {
    transform: scale(1.1);
}

.project-img-box:hover .project-overlay {
    opacity: 1;
}

/* ------------------
    RESPONSIVE
------------------- */

/* Tablet: 2 images per row */
@media (max-width: 992px) {
    .project-gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-img-box {
        height: 260px;
    }
}

/* Mobile: 1 image per row */
@media (max-width: 600px) {
    .project-gallery-row {
        grid-template-columns: 1fr;
    }

    .project-img-box {
        height: 240px;
    }

    .pg-title {
        font-size: 26px;
    }
    .pg-left-bracket{
           position: relative;
            left: 10%;
          margin-top: -23px;
    }
    .pg-right-bracket{
         position: relative;
            left: 80%;
        margin-top: -72px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 3px;
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* SCROLL TO TOP */
#scrollTopBtn {
    position: fixed;
   bottom: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    border: none;
    /* border-radius: 50%;*/
    background-color: #ff3d3d;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    #scrollTopBtn {
        width: 45px;
        height: 45px;
    }
}
/* contact form validation */

/* .error {
    color:white;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}
.form-group input.error-input,
.form-group textarea.error-input {
    border-color: red;
}
 */

 .form-group {
    position: relative;
    margin-bottom: 25px;
}

.error {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

