/* ===== Global Responsive Images ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-header{
    font-family: Fabrico BC;
}

/*** Spinner Start ***/
/* 
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 } */

/*** Spinner End ***/

.logo{
    width: 150px;
    height: auto;
}

/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 400px;
    overflow: hidden;
}

#note small {
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: mymove 7s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mymove {
    from {left: -50%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 4px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-dark);
    font-size: 16px;
    font-weight: 600;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}
/* Base nav link */
.navbar .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Pseudo underline (hidden by default) */
.navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--bs-secondary);
    transform: translateX(-50%);
    transition: width 0.35s ease;
    opacity: 0;
}

/* Hover effect: underline grows from center */
.navbar .navbar-nav .nav-link:hover {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 80%;
    opacity: 1;
}

/* Active link stays underlined */
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}


/* ===== Mobile menu toggle fix ===== */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link.active::after {
    width: 80%;
    opacity: 1;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem 0;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 12px 0;
        margin: 0;
    }
}

/* ===== Glassmorphism Sticky Navbar ===== */

.navbar-glass {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Mobile & Tablet fallback (performance safe) */
@media (max-width: 991px) {

    /* Glass navbar when scrolled */
    .navbar-glass {
        background: rgba(255, 255, 255, 0.55) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

    /* Mobile dropdown panel (the white box) */
    .navbar-glass .navbar-collapse {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        overflow: hidden;
    }

    /* When menu is OPEN */
    .navbar-glass .navbar-collapse.show {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    /* Menu items spacing */
    .navbar-nav {
        padding: 12px 0;
    }

    /* Menu links styling */
    .navbar-nav .nav-link {
        font-size: 17px;
        padding: 14px 0;
        font-weight: 600;
    }

    /* Optional divider between items */
    .navbar-nav .nav-link:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
    height: 450px;
}

.carousel-item-1 {
    position: relative;
    height: 450px;
}

/* Background image */
.carousel-item img,
.carousel-item-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Overlay (CLICK-THROUGH FIX) */
.carousel-item::after,
.carousel-item-1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none; /* 🔥 KEY FIX */
}

/* Caption */
.carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    /* align-items: center; */
    margin-top:12% ;
    justify-content: center;
}
.carousel-item h4{
    font-size: 45px;
}

/* Text */
.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px;
}

/* Controls (ENSURE CLICKABLE) */
.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
    width: 70px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-primary);
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
    border-radius: 0 50px 50px 0;
}

.carousel-control-next {
    right: 0;
    border-radius: 50px 0 0 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--bs-secondary);
}

/* Indicators */
#carouselId .carousel-indicators li {
    width: 20px;
    height: 2px;
    border-radius: 50px;
    background: var(--bs-primary);
    opacity: 1;
}

#carouselId .carousel-indicators .active {
    background: var(--bs-secondary);
}

/* ===============================
   RESPONSIVE TEXT ONLY
   (NO HEIGHT CHANGE)
================================ */

/* Tablets */
@media (max-width: 992px) {
    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-item h1,
    .carousel-item-1 h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        padding-top: 30px;
        font-size: 14px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 55px;
        height: 45px;
    }
}

/*** Carousel End ***/


/*** Services Start ***/

/* ===============================
   Card Container
================================ */
.services .services-item {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    padding: 0px 0;
    position: relative;
    display: flex;
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.8s ease forwards;
}

/* Stagger animation (desktop only) */
.services-inner .col-lg-4:nth-child(1) .services-item { animation-delay: 0.1s; }
.services-inner .col-lg-4:nth-child(2) .services-item { animation-delay: 0.3s; }
.services-inner .col-lg-4:nth-child(3) .services-item { animation-delay: 0.5s; }
.services-inner .col-lg-4:nth-child(4) .services-item { animation-delay: 0.7s; }
.services-inner .col-lg-4:nth-child(5) .services-item { animation-delay: 0.9s; }
.services-inner .col-lg-4:nth-child(6) .services-item { animation-delay: 1.1s; }

/* ===============================
   Content Wrapper
================================ */
.services .services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Hover Overlay */
.services .services-content::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 0;
    border-radius: 10px;
    background: rgba(3, 43, 243, 0.8);
    transition: height 0.5s ease;
}

.services-item:hover .services-content::after {
    height: 100%;
}

/* ===============================
   Foreground Content
================================ */
.services .services-content-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Icon container (equal height) */
.services .services-content-icon i {
    font-size: 3.5rem;
    height: 70px;
    width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}



/* Title alignment + animation */
.services .services-content-icon h4 {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    transform: translateY(12px);
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.services-item:hover .services-content-icon h4 {
    transform: translateY(0);
    opacity: 1;
}

/* Description */
.services .services-content-icon p {
    flex-grow: 1;
    max-height: 110px;
    overflow-y: auto;
    padding-right: 5px;
    margin-top: 0;
    transition: color 0.4s ease;
}

/* Scrollbar */
.services .services-content-icon p::-webkit-scrollbar {
    width: 4px;
}

.services .services-content-icon p::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

/* Button */
.services .services-content-icon a.btn {
    margin-top: auto;
    align-self: center;
    background-color: var(--bs-primary);
    border: none;
}
/* Hover effects (desktop) */
.services-item:hover .services-content-icon i {
    color: var(--bs-secondary);
    transform: translateY(-6px) scale(1.05);
}

.services-item:hover .services-content-icon h4,
.services-item:hover .services-content-icon p {
    color: var(--bs-white);
    border: none;
}

/* Icon hover color change */
.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
    transform: translateY(-6px) scale(1.05);
}


.services-item:hover .services-content-icon a.btn {
    background-color: var(--bs-secondary);
    color: var(--bs-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* ===============================
   Animations
================================ */
@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   Mobile Optimization
================================ */


@media (max-width: 768px) {

    /* Prevent card color change on tap */
    .services-item:active,
    .services-item:focus,
    .services-item:focus-within {
        background: inherit !important;
    }

    /* Prevent overlay activation on tap */
    .services-item:active .services-content::after,
    .services-item:focus .services-content::after,
    .services-item:focus-within .services-content::after {
        height: 0 !important;
    }

    /* Prevent text/button color change on tap */
    .services-item:active .services-content-icon *,
    .services-item:focus .services-content-icon *,
    .services-item:focus-within .services-content-icon * {
        color: inherit !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/*** Services End ***/




/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

/* ===============================
   FORM SUCCESS / ERROR MESSAGE
================================ */

.form-success-message {
    display: none;
    background: #e6f9f0;
    color: #0f9d58;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    animation: fadeSlide 0.4s ease;
}

.form-error-message {
    display: none;
    background: #fdecea;
    color: #d93025;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*** Contact End ***/
/*** ===============================
        FINAL RESPONSIVE FOOTER
        (UNIFORM SPACING + STACK MOBILE)
================================ */

/* Footer Base */
.footer {
    background: #0b0f19;
    padding: 40px 0 20px 0;
}

/* Row spacing control (KEY FIX) */
.footer-row {
    row-gap: 30px;      /* Vertical spacing */
    column-gap: 0;      /* Prevent uneven horizontal gaps */
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Remove unwanted manual shifts */
.footer .col-lg-3 {
    margin-left: 0 !important;
    padding-left: 12px;
    padding-right: 12px;
}

/* Logo */
.footer-logo {
    width: 180px;
    height: auto;
    margin: 0;
}

/* Tagline */
.footer-tagline {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 7px;
    margin-bottom: 0;
}

/* Titles */
.footer-title {
    color: var(--bs-secondary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

/* Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: max-content;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bs-secondary);
    transform: translateX(5px);
}

/* Contact */
.footer-contact p {
    color: #e5e7eb;
    margin-bottom: 10px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
}

.footer-contact a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--bs-secondary);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.35s ease;
}

.footer-social a:hover {
    background: var(--bs-secondary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(238, 89, 46, 0.35);
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 25px 0 15px;
}

/* Copyright */
.footer-copy {
    color: #9ca3af;
    font-size: 13.5px;
}

/* ===============================
   DESKTOP SPACING FIX (IMPORTANT)
================================ */
@media (min-width: 992px) {
    .footer-row {
        justify-content: center; /* Prevents extreme spreading */
    }

    .footer-col {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ===============================
   TABLET (2 columns layout)
================================ */
@media (max-width: 991px) {
    .footer {
        padding: 35px 0 20px 0;
        text-align: left;
    }

    .footer-logo {
        width: 170px;
    }
}

/* ===============================
   MOBILE (STACK ONE AFTER ANOTHER)
================================ */
@media (max-width: 768px) {

    .footer {
        text-align: center;
        padding: 30px 0 15px 0;
    }

    /* Force single column stacking */
    .footer-row > div {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 25px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        margin-bottom: 12px;
    }
}

/* ===============================
   SMALL MOBILE EXTRA POLISH
================================ */
@media (max-width: 480px) {
    .footer-logo {
        width: 150px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 14px;
    }
}

/* ===================================
   VALUES SECTION (2 PER ROW - CLEAN)
=================================== */
.values-minimal {
    background: #ffffff;
}

/* Grid wrapper */
.values-grid {
    max-width: 1100px;
    margin: 0 auto;
}

/* Each row = 2 columns */
.values-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 15px;
}

/* Each value block */
.value-item {
    flex: 1;
    max-width: 500px;
}

/* Headings */
.value-item h4 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    position: relative;
    text-align: center;
}

/* Accent line under heading */
.value-item h4::after {
    content: "";
    width: 55px;
    height: 3px;
    background: var(--bs-secondary);
    display: block;
    justify-self: center;
    margin-top: 8px;
    border-radius: 10px;
;
}

/* Description */
.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

/* ===================================
   SCROLL REVEAL ANIMATION
=================================== */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   RESPONSIVE (MOBILE FIX)
=================================== */
@media (max-width: 768px) {

    .values-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .value-item {
        max-width: 100%;
        text-align: left;
    }

    .value-item h2 {
        font-size: 22px;
    }

    .value-item p {
        font-size: 15px;
    }
}


/* .carousel-item-1 {
    position: relative;
    height: 550px
} */

.carousel-item-1::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}


.section {
  padding: 5rem 0;
}

.section-tight-bottom {
  margin-bottom: 1.5rem;
}

.section-tight-top {
  margin-top: 1.5rem;
}



/* Contact Section */
.contact-section {
  padding: 1rem 0;
  padding-bottom: 3rem;
  background-color: #fff;
}

/* Headings */
.contact-subtitle {
  color: #1842b6;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-title {
  color: #000;
  font-weight: 600;
}

/* Make columns equal height */
.row.g-4 {
  display: flex;
  flex-wrap: wrap;
}

/* Info Cards */
/* Contact Info Cards Wrapper Fix */
.row.g-4 {
  align-items: stretch; /* Makes all cards equal height */
}

/* Info Cards */
.contact-info-card {
  background: #fff;
  box-shadow: 1px 2px 7px rgba(0,0,0,0.2);
  padding: 1.8rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
  height: 100%;              /* Equal height automatically */
  display: flex;
  flex-direction: column;
  justify-content: center;   /* Vertical center */
  text-align: left;          /* Align content properly */
}

/* Each icon + text row */
.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;   /* Align icon and text in same line */
  gap: 12px;
  margin-bottom: 12px;
}

.contact-info-card .info-item:last-child {
  margin-bottom: 0;
}

/* Icon styling */
.contact-info-card i {
  font-size: 1.6rem;
  color: #EE592E;
  min-width: 28px; /* Keeps icons perfectly aligned */
  margin-top: 3px;
}

/* Text styling */
.contact-info-card p {
  color: #000;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.contact-info-card:hover {
  transform: translateY(-6px);
}

/* ===============================
   CONTACT SECTION - PREMIUM UI
================================ */
/* ===============================
   CONTACT SECTION (PREMIUM UI)
================================ */

.contact-wrapper {
    margin-top: 20px;
}

/* Glass Card Base */
.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle hover lift */
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(24, 66, 182, 0.12);
}

/* Header */
.contact-card-header {
    margin-bottom: 16px;
}

.contact-card-header h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
    color: #1f2937;
}

.contact-card-header p {
    font-size: 14px;
    color: #6b7280;
}

/* ===============================
   MAP DESIGN (SHORTER HEIGHT)
================================ */
.contact-map-container {
    border-radius: 14px;
    overflow: hidden;
    height: 90%; /* 🔥 Reduced height */
    position: relative;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: 0;
    transition: transform 0.4s ease;
}

.contact-map:hover {
    transform: scale(1.02);
}

/* ===============================
   FORM DESIGN (WRITE FRIENDLY)
================================ */
.contact-card {
    background: #ffffff; /* 🔥 PURE WHITE */
    border-radius: 16px;
    padding: 18px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); /* lighter shadow */
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Form card extra compact */
.contact-form-card {
    background: #ffffff; /* Ensures white form */
    padding: 18px 18px 16px 18px; /* shorter height */
}

/* Input Fields */
.contact-input {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

/* Focus Effect */
.contact-input:focus {
    border-color: #1842b6;
    box-shadow: 0 0 0 3px rgba(24, 66, 182, 0.08);
    outline: none;
}

/* Textarea smaller & smoother */
textarea.contact-input {
    resize: none;
    min-height: 90px; /* shorter but comfortable */
}

/* ===============================
   PHONE INPUT WITH COUNTRY CODE
================================ */
.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    max-width: 100px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    background: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.country-code:focus {
    border-color: #1842b6;
    box-shadow: 0 0 0 3px rgba(24, 66, 182, 0.08);
}

.phone-input {
    flex: 1;
}

/* Only numbers UX */
.phone-input::-webkit-inner-spin-button,
.phone-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Success & Error Messages */
.form-success-message,
.form-error-message {
    display: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    animation: fadeSlide 0.4s ease;
}

.form-success-message {
    background: #e6f9f0;
    color: #0f9d58;
}

.form-error-message {
    background: #fdecea;
    color: #d93025;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .phone-group {
        flex-direction: column;
    }

    .country-code {
        max-width: 100%;
    }
}
/* ===============================
   BUTTON (PREMIUM CTA)
================================ */
.contact-btn {
    background: linear-gradient(135deg, #1842b6, #2d6cdf);
    color: #fff;
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 15px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(24, 66, 182, 0.25);
}

/* Hover Effect */
.contact-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(24, 66, 182, 0.35);
    background: linear-gradient(135deg, #1639a0, #2558c9);
}

/* Click Effect */
.contact-btn:active {
    transform: scale(0.97);
}

/* ===============================
   MOBILE RESPONSIVE (IMPORTANT)
================================ */
@media (max-width: 991px) {

    .contact-card {
        padding: 18px;
    }

    .contact-map-container {
        height: 250px; /* shorter on mobile */
    }

    .contact-card-header h4 {
        font-size: 18px;
    }

    .contact-input {
        padding: 11px 12px;
        font-size: 14px;
    }

    textarea.contact-input {
        min-height: 110px;
    }
}



/* ===== Modal Styling ===== */
.modal-content {
    border-radius: 20px;
    padding: 10px;
}

/* Modal title */
.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bs-primary);
}

/* Modal icon */
#serviceModalIcon {
    color: #EE592E;
}

/* Section headings inside modal */
.service-modal-content b {
    display: block;
    margin-top: 20px;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* ===== Bullet points ===== */
.service-points {
    padding-left: 20px;
}

.service-points li {
    margin-bottom: 12px;
    font-size: 16px;
}

.service-points li::marker {
    color: var(--bs-primary);
    font-size: 18px;
}

/* ===== Modal Entrance Animation ===== */
.modal.fade .modal-dialog {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.fade.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* ===== SOCIAL ICON HOVER EFFECT ===== */

.hightech-link a {
    transition: all 0.35s ease;
}

.hightech-link a:hover {
    background-color: var(--bs-secondary) !important;
}

.hightech-link a:hover i {
    color: #ffffff !important;
}


/* ===============================
   MOBILE SERVICES SLIDER (HOME)
================================ */
@media (max-width: 768px) {

    .home-services .services-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }

    .home-services .services-track::-webkit-scrollbar {
        display: none;
    }

    .home-services .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    /* PROGRESS BAR */
    .services-progress {
        width: 80%;
        height: 4px;
        margin: 14px auto 0;
        background: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
    }
}
/* ===============================
   SERVICES DEFAULT (DESKTOP / LAPTOP)
================================ */
.services-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Each card fills grid cell */
.service-slide {
    width: 100%;
}

/* ===============================
   MOBILE SERVICES SLIDER ONLY
================================ */
@media (max-width: 768px) {

    .services-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 20px;
    }

    .services-track::-webkit-scrollbar {
        display: none;
    }

    .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    /* Progress bar */
    .services-progress {
        width: 80%;
        height: 4px;
        background: #e5e7eb;
        border-radius: 10px;
        margin: 14px auto 0;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
        border-radius: 10px;
        transition: width 0.1s linear;
    }
}

/* ===============================
   DESKTOP (unchanged grid)
================================ */
.services-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
   MOBILE SLIDER ONLY
================================ */
@media (max-width: 768px) {

    .services-track {
        display: flex;
        gap: 16px;
        overflow-x: hidden;
        scroll-behavior: smooth;
        will-change: transform;
    }

    .service-slide {
        flex: 0 0 85%;
        max-width: 85%;
        transition: transform 0.45s ease, opacity 0.45s ease;
        opacity: 1;
        transform: scale(0.9);
    }

    /* CENTER FOCUSED CARD */
    .service-slide.is-active {
        transform: scale(1);
        opacity: 1;
    }

    /* Progress bar */
    .services-progress {
        width: 80%;
        height: 4px;
        margin: 14px auto 0;
        background: #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
    }

    .services-progress span {
        display: block;
        height: 100%;
        width: 0%;
        background: var(--bs-secondary);
        border-radius: 10px;
    }
}


/* ===============================
   ABOUT SECTION - RESPONSIVE
================================ */
.about-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    width: 100%;
}

/* Image Styling */
.about-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Content Styling */
.about-content {
    padding-left: 10px;
}

.about-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 18px;
    color: #111827;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Button */
.about-btn {
    background-color: #EE592E;
    color: #ffffff;
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(238, 89, 46, 0.25);
}

.about-btn:hover {
    background-color: #d94d26;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(238, 89, 46, 0.35);
}

/* ===============================
   TABLET RESPONSIVE (≤ 991px)
================================ */
@media (max-width: 991px) {
    .about-title {
        font-size: 24px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .about-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* ===============================
   MOBILE RESPONSIVE (≤ 768px)
================================ */
@media (max-width: 768px) {

    /* Stack image first then text */
    .about-image-wrapper {
        margin-bottom: 20px;
    }

    .about-title {
        font-size: 22px;
        text-align: center;
    }

    .about-subtitle {
        text-align: center;
    }

    .about-text {
        font-size: 15px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-btn {
        padding: 11px 28px;
        font-size: 14px;
    }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
    .about-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* =====================================
   INDUSTRIES SECTION - FULL RESPONSIVE
===================================== */

/* ===============================
   INDUSTRIES IMAGE FIRST DESIGN
================================ */
.industry-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* 50% Transparent Solid Overlay */
.industry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 66, 182, 0.5); /* 50% brand blue */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.industry-overlay h4 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Hover Effects */
.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card:hover .industry-overlay {
    opacity: 1;
}

.industry-card:hover .industry-overlay h4 {
    transform: translateY(0);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .industry-card {
        height: 150px;
    }
    .industry-overlay {
        opacity: 1; /* Always visible on mobile */
        background: rgba(24, 66, 182, 0.6);
    }
}


/* ===============================
   INDUSTRIES CARD DESIGN
================================ */
.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay (50% solid color) */
.industry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 66, 182, 0.5); /* 50% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    padding-top: 20%;
}

/* Overlay content */
.overlay-content h4 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    
}

/* Read More button style */
.read-more {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bs-secondary);
    color: #ffff;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card:hover .industry-overlay {
    opacity: 1;
}

.industry-card:hover .read-more {
    background: var(--bs-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


/* ===============================
   HOVER EFFECTS (DESKTOP)
================================ */
@media (min-width: 992px) {

    .industry-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.15);
    }

    .industry-card:hover img {
        transform: scale(1.08);
    }

    .industry-card:hover .industry-overlay {
        background: rgba(24, 66, 182, 0.65);
    }

    .industry-card:hover .read-more {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }
}

/* ===============================
   TABLET RESPONSIVENESS (768px–991px)
================================ */
@media (max-width: 991px) {

    .industry-card {
        min-height: 220px;
        border-radius: 14px;
    }

    .industry-card img {
        min-height: 220px;
    }

    .overlay-content h4 {
        font-size: 20px;
    }

    .read-more {
        font-size: 13px;
        padding: 7px 18px;
    }
}

/* ===============================
   MOBILE RESPONSIVENESS (<=768px)
================================ */
@media (max-width: 768px) {

    /* Reduce section padding */
    .industries {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Single column breathing space */
    .industries .row {
        gap: 18px 0;
    }

    .industry-card {
        min-height: 180px;
        border-radius: 12px;
    }

    .industry-card img {
        min-height: 180px;
    }

    /* Overlay always visible & readable */
    .industry-overlay {
        background: rgba(0, 0, 0, 0.45);
        padding: 15px;
    }

    .overlay-content h4 {
        font-size: 18px;
        line-height: 1.3;
    }

    .read-more {
        font-size: 12.5px;
        padding: 6px 16px;
        border-radius: 25px;
    }
}

/* ===============================
   SMALL MOBILE (<=480px)
================================ */
@media (max-width: 480px) {

    .industry-card {
        min-height: 160px;
    }

    .industry-card img {
        min-height: 160px;
    }

    .overlay-content h4 {
        font-size: 16px;
    }

    .read-more {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* ==================================================
   PREMIUM METRICS SECTION (SAAS STYLE)
================================================== */

/* PARALLAX BACKGROUND */
.metrics-pro {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.metrics-bg {
    position: absolute;
    inset: 0;
    background-attachment: fixed; /* PARALLAX */
    z-index: -1;
}

/* GLASSMORPHISM CARD */
.metric-glass {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

/* Glow border animation */
.metric-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, #1842b6, #4f8cff, transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.metric-glass:hover::before {
    opacity: 1;
}

.metric-glass:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.12);
}

/* ICON */
.metric-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #4f8cff;
    transition: 0.4s ease;
}

.metric-glass:hover .metric-icon {
    background: linear-gradient(135deg, #1842b6, #4f8cff);
    color: #000;
    transform: scale(1.15) rotate(5deg);
}

/* GRADIENT ANIMATED NUMBERS (SAAS STYLE) */
.metric-gradient {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #4f8cff, #22d3ee, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* TITLES */
.metric-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.metric-sub {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
}

/* SCROLL REVEAL */
.metric-glass {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.metric-glass.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .metrics-bg {
        background-attachment: scroll; /* Prevent lag on mobile */
    }

    .metric-gradient {
        font-size: 36px;
    }
}

/* ===============================
   TESTIMONIAL BOX (2 PER SLIDE)
================================ */
/* .testimonial-box-section {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
} */

.testimonial-box-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 40px 40px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Big Quote Background */
.testimonial-quote-bg {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 120px;
    color: rgba(24, 66, 182, 0.05);
    pointer-events: none;
}

/* Slider */
.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s ease;
}

/* Each Slide (contains 2 cards) */
.testimonial-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Card Design */
.testimonial-card {
    flex: 1;
    background: #f9fbff;
    padding: 30px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(24, 66, 182, 0.08);
    position: relative;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(24, 66, 182, 0.15);
    border-color: rgba(24, 66, 182, 0.2);
}

/* Text */
.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 20px;
    position: relative;
}

/* Quote Icon */
.testimonial-card p::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--bs-secondary);
    margin-right: 8px;
}

/* Name */
.testimonial-card h5 {
    font-weight: 700;
    color: #1842b6;
    margin-bottom: 4px;
}

/* Role */
.testimonial-card span {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Dots */
.testimonial-dots {
    margin-top: 25px;
    text-align: center;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    margin: 5px;
    display: inline-block;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots span.active {
    background: #1842b6;
    transform: scale(1.3);
}

/* Mobile: 1 per slide */
@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote-bg {
        font-size: 70px;
        right: 15px;
    }
}

/* ===============================
   ABOUT SECTION - FULL RESPONSIVE
================================ */
.about-section {
    background: #ffffff;
}

/* Image Wrapper */
.about-images {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: auto;
}

/* Main Image */
.about-img-main {
    width: 80%;
    border-radius: 18px;
    margin-bottom: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Overlay Image (Desktop Overlap) */
.about-img-overlay {
    position: absolute;
    width: 70%;
    bottom: -100px;
    right: -30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Content Styling */
.about-content {
    padding-right: 10px;
}

.about-subtitle {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-title {
    color: var(--bs-primary);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.about-heading {
    color: #111;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 6px;
}

.about-text {
    color: #555;
    line-height: 1.7;
    font-size: 15.5px;
    margin-bottom: 10px;
}

/* Button */
.about-btn {
    background: var(--bs-secondary);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #d94f28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 89, 46, 0.3);
}

/* ===============================
   TABLET RESPONSIVE (≤ 991px)
================================ */
@media (max-width: 991px) {

    .about-img-main {
        width: 85%;
    }

    .about-img-overlay {
        width: 65%;
        bottom: -20px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 15px;
    }
}

/* ===============================
   MOBILE RESPONSIVE (≤ 768px)
================================ */
@media (max-width: 768px) {

    /* Stack layout perfectly */
    .about-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-images {
        max-width: 320px;
        margin-bottom: 40px;
    }

    /* Remove aggressive overlap on mobile */
    .about-img-main {
        width: 100%;
        margin-bottom: 0px;
    }

    .about-img-overlay {
        bottom: -80px;
    }

    .about-content {
        text-align: center;
        padding: 0;
    }

    .about-title {
        font-size: 20px;
    }

    .about-heading {
        font-size: 17px;
    }

    .about-text {
        font-size: 14.5px;
        text-align: justify;
    }

    .about-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {

    .about-images {
        max-width: 260px;
    }

    .about-img-overlay {
        width: 90%;
        margin-top: -50px;
    }

    .about-title {
        font-size: 18px;
        line-height: 1.5;
    }

    .about-text {
        font-size: 14px;
    }
}