/* ===== abetec_style.css - Abe Tec EA Ltd Stylesheet Updated ===== */
/* ===== Done by Ravleen Sagoo ===== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Baloo Chettan 2", system-ui, sans-serif;
    color: #666;
}

/* === ACTIVE LINKS === */
body a {
    color: #143a8f;
    text-decoration: none;
    transition: 0.3s;
}

body a:hover {
    color: #da3619;
    text-decoration: none;
    transition: 0.3s;
}

body a:active {
    color: black;
}

body note {
    font-size: small;
    color: #71747b;
    line-height: 10px;
}

/* === SECTION === */
section {
    margin-bottom: 0!important;
    margin-top: 0!important;
    position: relative;
    /*z-index:1 ;*/
}

section#about {
    box-shadow: inset 0 -5px 5px rgba(0, 0, 0, 0.25);
}

#about img {
    /*box-shadow: 0 0 11px rgba(33,33,33,.2);*/
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border: 1px solid #e6e6e6;
}

section#principles {
    background-color: #dee2e6!important;
}

.white-container {
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.2);
}

.grey-container {
    background-color: #ccc;
    color: white;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.2);
}

/* === base colors defined === */
.blue {
    color: #143a8f;
}

.grae {
    color: #4d4d4d;
}

.ryd {
    color:#da3619;
}


/* === RESPONSIVE HEADINGS === */
/* Base styles (mobile first) */
h1, h2, h3, h4, h5, h6 {
  font-family: "Baloo Chettan 2", system-ui, sans-serif;
  line-height: 1.2;
  margin-bottom: 0.75em;
  font-weight: 300;
}

/* Extra small devices (<576px) */
h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

/* Small devices (≥576px) */
@media (min-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.4rem; }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2rem; }
  h4 { font-size: 1.5rem; }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 3rem; }
  h3 { font-size: 2.25rem; }
  h4 { font-size: 1.75rem; }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 3.25rem; }
  h3 { font-size: 2.5rem; }
  h4 { font-size: 2rem; }
}

/*adjusting breakpoints for headings*/

/* Adjust by breakpoint */
h1 {
  font-size: clamp(2rem, 4vw, 3.25rem); /* never smaller than 2rem or bigger than 3.25rem */
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem); /* “Introduction” will fall here */
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h5 {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

h6 {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

/* hero title for really big titles */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

/* hyperlinks on same page - scrolling -navbar allowance */
#products-services,
#industries,
#crane-hire {
    scroll-margin-top: 80px;
}

/* 
   ==============================================================
                    STYLING THE BREADCRUMBS
   ==============================================================
*/
.breadcrumb {
    background-color: #fff;
    margin: 0 0 0px;
    padding: 0 13px;
    border-radius: 0 13px;
    display: inline-flex;
    border: solid 1px #143a8f;
    bottom: -15px;
    right: 0px;
    overflow: hidden;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">>\00a0";
    color: #143a8f;
}

.fancycrumb {
    position: relative;
    margin-top: 35px;
    margin-bottom: 35px;
}

.fancycrumb::after {
    content:" ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.5em;
    border-bottom: 1px solid #143a8f;
    z-index: 1;
    margin-left: 15px;
}

/* Add a color to all links inside the list */
ol.breadcrumb li a {
    color: #143a8f;
    text-decoration: none;
}

ol.breadcrumb li a:hover {
    color: #da3619;
    transition: 0.3s;
}

ol.breadcrumb li a:active {
    color: #000;
    transition: 0.3s;
}


/* 
   ==============================================================
                    STYLING THE FORM
   ==============================================================
*/

.form-control {
    border-color: #143a8f;
    background-color: rgba(255,255,255,0.45);
}

.form-control:focus {
    border-color: rgba(102,102,102,0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(20,58,143,0.6);
    outline: 0 none; 
}

.crane_hire .form-control:focus {
    background-color: rgba(20,58,143,0.2);
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.075) inset, 0 0 8px rgba(255,255,255,0.6);
    border-color: white;
    color: white;
}

.help-block {
    color: #143a8f;
}

/* 
   ==============================================================
                    STYLING BUTTONS
   ==============================================================
*/

.btn-custom {
    color: #fff;/*#143a8f;*/
    background-color: #143a8f;/*#fff;*/
    border-color: #143a8f;
    /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(154,154,154, 0.6);*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-custom:hover {
    color: #143a8f;
    background-color: #fff;
    border-color: #143a8f; /*#808080;*/
}

.btn-custom.active {
    color: #143a8f;
    background-color: #71747b;
    border-color: #143a8f;
}

.btn-custom:focus,
.btn-custom.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.075);
    border-color: rgba(20,58,143,0.8);
}

.btn-customGrey {
    color: #fff;
    background-color: #666;
    border-color: #808080;
}

.btn-customGrey:hover {
    color: #4c4c4c;
    background-color: #cccccc;
    border-color: #666;
}

.btn-customGrey:focus,
.btn-customGrey.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.075);
    border-color: rgba(20,58,145,0.8);
}

.btn-customWhite {
    color: #808080;
    background-color: #fff;
    border-color: #808080;
}

.btn-customWhite:hover {
    color: #fff;
    background-color: #666;
    border-color: #808080;
}
.btn-customWhite:focus,
.btn-customWhite.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.075);
    border-color: rgba(20,58,145,0.8);
}

.btn-customWhiteOpp {
    color: #fff;
    background-color: #808080;;
    border-color: #808080;
}
.btn-customWhiteOpp:hover {
    color: #808080;
    background-color: #fff;
    border-color: #808080;
}
.btn-customWhiteOpp:focus,
.btn-customWhiteOpp.focus {
    box-shadow: 0 0 0 .2rem rgba(0, 0, 0, 0.075);
    border-color: rgba(0,0,0,0.8);
}


/* 
   ==============================================================
                   TOP SECTION
   ==============================================================
*/
#topSection {
    background: url("images/sliders/ab01.jpg") top center no-repeat;
    /*background-size: cover; /* make it scale */
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 567px; /* keeps your desktop height */
    height: auto; /* allows flexibility on smaller screens */
    transition: all 0.5s;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.7);
   /* display: flex;
    align-items: center; /* vertically center content */
    margin-top:0;
    margin-bottom:0;
    /*z-index: 1;*/
}

.firstCaption {
    position: relative;
    text-align: left!important;
    /*padding: 0 15px; /* padding on small screens */
    width: 37%;
    max-width: 600px;
    /*z-index: 2;*/
}

#topSection .btn-get-started {
    text-align:center!important;
    position: relative;
    transition: all 0.5s;
    top:0;
    animation: fadeIn 5s;
    font-size: 50px;
    padding-left: 0; /* remove huge padding */
    display: inline-block;
}

#topSection .btn-get-started:hover {
    top: 10px;
}

/* Smaller screens */
@media (max-width: 1024px) {
    .firstCaption {
        width: 60%;
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .firstCaption {
        width: 90%;
        padding-top: 60px;
        text-align: center;
        margin: 0 auto;
    }

    #topSection h2 {
        font-size: 28px;
        line-height: 36px;
        background-color: rgba(255,255,255,0.6);
    }

    #topSection p {
        font-size: 16px;
        background-color: rgba(255,255,255,0.6);
    }

    #topSection .btn-get-started {
        font-size: 36px;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .firstCaption {
        padding-top: 40px;
    }

    #topSection h2 {
        font-size: 24px;
        line-height: 32px;
        background-color: rgba(255,255,255,0.6);
    }

    #topSection p {
        font-size: 14px;
        background-color: rgba(255,255,255,0.6);
    }

    #topSection .btn-get-started {
        font-size: 28px;
    }
}

/* 
   ==============================================================
                   INTRODUCTION SECTION
   ==============================================================
*/
/* images in the grid */
.img-hover-shadow {
    transition: transform 0.3s, box-shadow 0.3s;
}
.img-hover-shadow:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.7)!important;
    transform: scale(1.20);
}

/* 
   ==============================================================
                   CUSTOM TOOL TIPS
   ==============================================================
*/
/* Custom tooltip styling */
.tooltip-inner {
    background-color: rgba(204, 204, 204, 0.87); /* #ccc with slight opacity */
    color: #143a8f; /* company blue */
    border: 1px solid #143a8f; /* black outline */
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.35rem;
    transition: all 0.4s ease-in-out; /* smooth transition */
}

/* Tooltip arrow */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: rgba(204, 204, 204, 0.85); 
    border-top-width: 0.5rem;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: rgba(204, 204, 204, 0.85);
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: rgba(204, 204, 204, 0.85);
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: rgba(204, 204, 204, 0.85);
}

/* Optional: fade-in/out transition effect for tooltip itself */
.tooltip.show {
    opacity: 1 !important;
    transition: opacity 0.4s ease-in-out;
}

/* 
   ==============================================================
                   CORE PRINCIPLES SECTION
   ==============================================================
*/
.principle-card {
    box-shadow: none;
    transition: transform 0.5s, box-shadow 0.5s;
    border: 1px solid #ccc;
}

.principle-card h5,
.principle-card i {
    color: #143a8f !important;
    transition: color 0.4s;
}

.principle-card:hover i {
    color: #da3619 !important;
}

.principle-card:hover h5 {
    color: #4d4d4d !important;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.7)!important;
}
/* Typing text */
.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid #da3619; /* cursor */
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 1.5em;
    color: #143a8f;
    vertical-align: bottom;
    animation: blink 0.8s steps(1) infinite;
    white-space: normal; /* ✅ allow wrapping */
    word-break: break-word; /* ✅ wrap long words nicely */
}

/* Cursor blink */
@keyframes blink {
    50% { border-color: transparent; }
}

/* 
   ==============================================================
                   CRANE HIRE SECTION
   ==============================================================
*/

/* Parallax main wrapper */
.parallax_main {
    position: relative;
    overflow: hidden;
}

/* Parallax Section for Crane Hire */
.parallax_main.crane_hire {
    position: relative;
    background: url('images/Crane-Hire.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* parallax effect */
    color: #fff;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.9);
    overflow: hidden;
}

/* Overlay */
.crane_hire .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.28); /* semi-transparent dark overlay */
}

/* Ensure container content is above overlay */
.crane_hire .container {
    position: relative;
}

/* Fix small screen background */
@media (max-width: 767.98px) {
    .crane_hire {
        background-attachment: scroll;
        padding: 4rem 1rem;
    }
}

/* Form controls full width */
#crane-contact .form-control {
    width: 100%;
}

/* Responsive heading */
.crane_hire h1 {
    font-size: 2rem; /* default mobile size */
}
@media (min-width: 768px) {
    .crane_hire h1 {
        font-size: 3rem; /* tablet & up */
    }
}
@media (min-width: 1200px) {
    .crane_hire h1 {
        font-size: 4rem; /* large screens */
    }
}

/* 
   ==============================================================
                   CLIENT / PARTNER SECTION
   ==============================================================
*/
#clients {
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.77) !important;
}
#ClientCo img {
  /*max-height: 110px; /* Default size for large screens */
  width: auto;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}

#ClientCo img:hover {
  transform: scale(1.05);
}

/* Medium devices (tablets, ≤992px) */
@media (max-width: 992px) {
  #ClientCo img {
    /*max-height: 80px;*/
  }
}

/* Small devices (phones, ≤576px) */
@media (max-width: 576px) {
  #ClientCo img {
    /*max-height: 60px;*/
  }
}

/* === LightSlider Arrows (Outlined Circle Style) === */
.lSAction > .lSPrev,
.lSAction > .lSNext {
  background-color: rgba(255,255,255,0.7) !important; /* hollow circle */
  border: 2px solid #143a8f; /* blue outline */
  border-radius: 50%;
  width: 42px;
  height: 42px;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  transition: all 0.3s ease-in-out;
}

/* Left arrow (blue stroke arrow) */
.lSAction > .lSPrev {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.5 2L4 8l6.5 6" stroke="%23143a8f" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

/* Right arrow (blue stroke arrow) */
.lSAction > .lSNext {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.5 2l6.5 6-6.5 6" stroke="%23143a8f" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

/* Hover effect: red arrow + red outline */
.lSAction > .lSPrev:hover,
.lSAction > .lSNext:hover {
  border-color: #da3619; /* red outline */
  background-color: rgba(255,255,255,0.7)!important;
  transform: scale(1.1);
}

/* Hover - change arrow to red */
.lSAction > .lSPrev:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M10.5 2L4 8l6.5 6" stroke="%23da3619" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}
.lSAction > .lSNext:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M5.5 2l6.5 6-6.5 6" stroke="%23da3619" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

/* Optional positioning */
.lSPrev {
  left: -20px;
}
.lSNext {
  right: -20px;
}


/* 
   ==============================================================
                PROJECTS HIRE PARALLAX SECTION
   ==============================================================
*/
/* Projects Hire Section */
.parallax_main.projects_hire {
    position: relative;          /* ensure overlay and content are positioned relative to this */
    background: url('images/project-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* optional parallax effect */
    height: 20vh;             /* or whatever height you want */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(128, 128, 128, 0.77) !important;
}

/* Overlay */
.parallax_main.projects_hire .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.07); /* darken background slightly */
    z-index:1;
}

/* Content inside projects_hire */
.parallax_main.projects_hire .container {
    position: relative;
    z-index: 2; /* make sure content is above overlay */
    text-align: center;
    padding: 2rem 0;
    color: #fff; /* text color */
}

/* Example heading animation */
.projects_hire .projects-heading {
    font-size: 2rem;
    font-weight: 400;
}


/*===parallex break section for before crane hire====*/
.parallax-break {
    background: url('images/portfolio/Gallery/03.jpg') center center / cover no-repeat fixed;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.parallax-break .overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.77);
    z-index: 1;
}

.parallax-break .container {
    position: relative;
    z-index: 2;
}

/*===parallex break two just before industry section===*/
.parallax-break-two {
    background: url('images/PowerHouseCrane120Ton.jpg') center center / cover no-repeat fixed;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.parallax-break-two .overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.77);
    z-index: 1;
}

.parallax-break-two .container {
    position: relative;
    z-index: 2;
}

/* Heading box */
.heading-box {
    display: inline-block;
    padding: 0.25em 0.75em;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* Paragraph box */
.para-box {
    display: inline-block;
    padding: 0.5em 1em;
    background: rgba(20,58,143,0.7);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 4px;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .heading-box {
    font-size: 1.75rem;
  }
  .para-box {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .heading-box {
    font-size: 1.5rem;
  }
  .para-box {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .heading-box {
    font-size: 1.25rem;
  }
  .para-box {
    font-size: 0.9rem;
  }
}

/* 
   ==============================================================
                PRODUCTS AND SERVICES SECTION
   ==============================================================
*/
#products-services {
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.25),  /* top shadow */
                inset 0 -5px 5px rgba(0, 0, 0, 0.25); /* bottom shadow */
}

/* Make card position relative */
#products-services .card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4)!important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

#products-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7)!important;
}

/* image to cover whole card */
#products-services .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    position: relative;
}

/* Overlay container */
#products-services .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5); /* semi-transparent black */
    color: #fff;
    padding: 0.75rem 1rem;
    transition: all 0.5s ease;
    z-index: 2;
}

/* Initially hide description */
#products-services .card-overlay .card-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

/* On hover, show description */
#products-services .card:hover .card-overlay .card-text {
  max-height: 100px; /* adjust depending on text length */
  opacity: 1;
  margin-top: 0.5rem;
}

/* Optional: title always visible */
#products-services .card-overlay .card-title {
  margin: 0;
}

/* Description panel hidden by default */
#products-services .product-card .card-description {
    position: absolute;
    top: 0;
    right: -100%; /* starting point off-screen to the right */
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.77);
    color: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3; /* above everything */
    transition: right 0.5s ease-in-out;
}

/* Slide in when active */
#products-services .product-card.active .card-description {
    right: 0;
}

#product-description-panel .card {
    transition: transform 0.4s ease;
}


/* ==============================================================
   INDUSTRIES SERVED SECTION
   ============================================================== */
#industries .industry-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2)!important;
    transition: all 0.3s;
}

#industries .industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 11px rgba(0,0,0,0.5)!important;
  border-color: #143a8f;
}

#industries .industry-box img {
  width: 80px;  /* adjust to match your icon size */
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.8rem;
    color: #143a8f !important;
}

#industries .industry-box p {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

#industries .industry-box:hover p {
  color: #143a8f;
}

/* ==============================================================
                            FOOTER
   ============================================================== */

footer {
  background: linear-gradient(
    171deg,
    rgba(110,115,120,1) 0%,
    rgba(146,146,147,0.99) 44%,
    rgba(141,141,142,1) 100%
  );
  color: #fff;
  padding: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
              rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  position: relative;
  font-size: small;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #143a8f;
}

/* Copyright divider */
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quick Links */
.links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer .three-column {
  overflow: hidden;
}

footer .three-column li {
  width: 33.3333%;
  float: left;
  padding: 5px 0;
}

/* Divider line */
hr.ignite {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/* Project Thumbnails */
footer .img-thumbnail {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  margin: 5px 2px 2px 0px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

footer .img-thumbnail:hover {
  background: rgba(70, 70, 70, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Intro Text */
footer .v1 {
    border-left: 3px solid rgba(255, 255, 255, 0.3) !important;
    text-align: justify;
}

footer .intro-company p {
  color: #3c3c3d;
  line-height: 1.2;
}

/* Social Links */
footer .footer-social {
  position: relative;
  margin-top: 20px;
}

footer .footer-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 23px;
  padding: 6px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(70, 70, 70, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

footer .footer-social a:hover {
  color: #da3619;
  background: #ccc;
  border-color: #a9a9a9;
}

/* 
   ==============================================================
                    Gallery 
   ==============================================================
*/
.portfolio {
    text-align: center;
    padding-bottom: 3px;
}

ul.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    overflow: hidden;
    padding: 0;
}

ul.portfolio-filters li {
    margin: 0;
}

.isotope-portfolio .item {
    text-align: center;
    /*margin-bottom: 24px;*/
}
.isotope-portfolio .item img {
    /*box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;*/
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    max-width: 100%;
    display: block;
}

.isotope-portfolio .item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.isotope-portfolio .item a .overlay {
    opacity: 0;
    filter: alpha(opacity=0);
    box-sizing: border-box;
    /*padding: 10px;*/
    border-radius: 5px;
    width: 100%;
    height: 100%;
    /*height: 91.8%;*/
    background: #666;
    background: rgba(77, 77, 77, 0.77);
    transition: all 500ms linear;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    pointer-events: none;
}
.isotope-portfolio .item a .overlay .desc {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: 35%;
    margin: auto;
}

.isotope-portfolio .item a:hover .overlay {
    color: #fff;
    text-decoration: none;
    opacity: 100 !important;
    filter: alpha(opacity=10000) !important;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    pointer-events: none;
}

.isotope-portfolio .item a .overlay i {
    font-size: 28px;
}

.isotope-portfolio .item a .overlay i:hover {
    font-size: 36px;
    transition: all 500ms linear;
}


/* 
   ==============================================================
                    PROJECTS
   ==============================================================
*/
.project {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius:10px;
    box-shadow: 0 0 13px rgba(11,11,11,0.3);
    transition: box-shadow .3s;
}

.projectTop {
    overflow: hidden;
    border-radius:10px;
    border: 1px solid #ccc;
    position: relative;
    width: 100%;
}

.projectTop:hover {
    box-shadow: 0 0 13px rgba(28,58,143,0.7); 
}

.projectDeets {
    max-width: 100%;
    height: 100%;
}

.projectDeets:hover .projectOverlay {
    width: 100%;
    border-radius: 3px;
}

.projectImg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
}

.projectOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(28,58,143,0.8);
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .8s ease;
    border-radius: 3px;
    z-index:5;
}

.projectTitle {
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    border-radius: 3px;
    opacity: 0;
    z-index: 10;
}

.projectTitle h4 {
    /*font-weight: normal;
    font-style: normal;
    font-size: 24px;*/
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-rendering: auto;
    color: #fff;
    position: absolute;
    margin-top: 50px;
    padding-left: 50px;
}

.projectTitle h5 {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0;
    text-rendering: auto;
    color: #989898;
    position: absolute;
    padding-top: 79px;
    padding-left: 50px;
}

.projectDeets:hover .projectTitle {
    opacity: 1;
    transition: 1.2s ease;
}

.projectInfo {
    margin: 15px;
    padding-left: 2px;
    padding-right: 2px;
}

hr.blue {
    border-top: 1px solid #143a8f;
}
.projectInfo h5 {
    font-size: 18px;
    letter-spacing: -0.035em;
    text-rendering: auto;
    color: #000;
    margin-bottom: -10px;
}

.projectInfo p {
    text-align: justify;
    letter-spacing: 0.01;
    line-height: 1.1;
}

.projectInfo ul {
    list-style: none;
    padding: 0;
}

.projectInfo li {
    padding: none;
    border-bottom: 1px solid #808080;
    border-width: 100%;
    text-align: justify;
    letter-spacing: 0.01;
    line-height: 1.1;
}
.projectNav {
    padding-bottom: 10px;
}

.projectList p {
    letter-spacing: 0.01;
    text-align: justify;
    line-height: 1.1;
}

/* 
   ==============================================================
                    MODAL
   ==============================================================
*/
.carousel-img {
    height:450px;
    width: 1110px;
    background-size: cover;
    overflow: hidden;
    align-self:center;
}
.modal-img-size {
/* 	padding: 0;
	margin: 0; */
	height: 450px;
	width: 700px;
	background-size: cover;
	overflow: hidden;
}
.projectModals .modal-backdrop {
	opacity:0.8 !important;
}
.projectModals .modal-content {
    width: 700px;
    border: none;
    background-color: rgba(255,255,255,.88);
    color: #666;
}
.projectModals .modal-body {
   padding: 0;
}

/* Custom Carousel Control Arrows */
.projectModals .carousel-control-prev-icon,
.projectModals .carousel-control-next-icon {
    background-size: 30px 48px; /* Ensuring proper sizing */
    background-repeat: no-repeat;
    background-position: center;
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
}

/* Custom Left Arrow Icon */
.projectModals .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666666' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

/* Custom Right Arrow Icon */
.projectModals .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666666' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.projectModals .modal-header {
    border-bottom: 1px solid #989898;
    color:
}

.projectModals .modal-footer {
    border-top: 1px solid #ccc;
}

/* Carousel Indicators */
.projectModals .carousel-indicators li {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%; /* This keeps them round */
    background-color: rgba(0, 0, 0, 0.5); /* Default indicator color */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

.projectModals .carousel-indicators .active {
    background-color:  #143a8f; /* Active indicator color */
}

.projectModals .new-caption-area {
    color: #143a8f;
    font-size: small;
    margin-top: 10px;
    padding-right: 13px;
    padding-left: 13px;  
}

.projectModals .modal-title {
    color: black;
}

/*
.projectModals .modal-body .carousel-caption {
    position: relative;
    top: 0;
    left: 0;
    color: #143a8f;
}
*/

.projectModals .modal-body .carousel-caption p {
    display: none;
}
