/********** Template CSS **********/
:root {
    --primary: #00bfff;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
        font-size: 14px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: #00bfff;
    border-color: #00bfff;
    color: #fff;

}

a.btn.btn-primary.px-3.d-none.d-lg-block {
    background-color: #ff7e43;
    border-color: #ff6e2c;
    color: #ffff;
}
.topbar-right {
    position: relative;
       background: #673AB7;
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
     background: #673AB7;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: #673AB7;
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
       background: #673AB7;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



.main-banner img {
    width: 100%;
    height: 700px;
    /* object-fit: cover; */
}

.haeding-text {
font-size: 21px;
    padding-bottom: 2px;
}

.text-size {
    font-size: 14px;
}

.services-list li {
     font-size: 14px;
     padding-bottom: 4px;
}




/* Section spacing */
.industry-list-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Card design */
.industry-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Delay animation for each card */
.industry-item:nth-child(1){animation-delay:0.1s;}
.industry-item:nth-child(2){animation-delay:0.2s;}
.industry-item:nth-child(3){animation-delay:0.3s;}
.industry-item:nth-child(4){animation-delay:0.4s;}
.industry-item:nth-child(5){animation-delay:0.5s;}
.industry-item:nth-child(6){animation-delay:0.6s;}

/* Image style */
.industry-item img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Title */
.industry-item h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* Hover Effects */
.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.industry-item:hover img {
    transform: scale(1.1);
}

/* Animation */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Heading style */
.haeding {
    font-size: 34px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .industry-list-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industry-list-section {
        grid-template-columns: 1fr;
    }
}


/* Heading */
.haeding-text {
    font-size: 36px;
    font-weight: 700;
    color: #1b1b1b;
}

/* Paragraph text */
.text-size {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Image animation */
.col-lg-4 img {
    border-radius: 10px;
    transition: transform 0.6s ease, box-shadow 0.4s ease;
    animation: floatImage 4s ease-in-out infinite;
}

.col-lg-4 img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Floating animation */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Services list */
.services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    transition: transform 0.3s ease;
}

/* Custom bullet */
.services-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #fd7e14;
    font-size: 16px;
}

/* Hover animation */
.services-list li:hover {
    transform: translateX(6px);
    color: #fd7e14;
}

/* Fade animation */
.wow.fadeIn {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Section spacing */
.container-xxl {
    position: relative;
}

/* Responsive */
@media (max-width: 992px) {
    .haeding-text {
        font-size: 28px;
    }

    .col-lg-4 {
        margin-bottom: 25px;
    }
}

/* Banner Section */
.main-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Banner Image */
.main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bannerZoom 8s ease-in-out infinite alternate;
}

/* Dark overlay (professional look for websites) */
.main-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.35); */
}

/* Zoom animation */
@keyframes bannerZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .main-banner {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .main-banner {
        height: 250px;
    }
}



.services-section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 700;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

/* Service Row */
.service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* Reverse layout */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Image */
.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}

/* Hover effect */
.service-image img:hover {
    transform: scale(1.05);
}

/* Content */
.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 10px 15px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .projects-section {
    padding: 20px 20px !important;
  
}


.section-title h2 {
    font-size: 30px !important;
   
}


.haeding {
    font-size: 21px !important;
    font-weight: 700;
}

    .haeding-text {
        font-size: 21px !important;
    }
}










.projects-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Section title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.section-title p {
    color: #666;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover zoom */
.project-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
   background: linear-gradient(#0000008a, rgba(0, 0, 0, 0.8));
}

.project-info h3 {
    font-size: 20px;
    color: #fff;
}

.project-info span {
    font-size: 14px;
    color: #ddd;
}

/* Tablet */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 220px;
    }
}


nav.navbar.navbar-expand-lg.bg-white.navbar-light.sticky-top.py-0.pe-5 {
    border-bottom: 1px solid #ced4da;
}



.footer {
    background: #02245B;
    color: #fff;
    padding: 60px 20px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Title */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
        color: #fff;
}

/* Text */
.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

/* Email */
.footer-email {
    margin-top: 10px;
    font-weight: 500;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fd7e14;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background: #02245B;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fd7e14;
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
      border-top: 1px solid #ffffff;
    padding-top: 15px;
    text-align: center;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}














.cate_grid {
  columns: 3;
  column-gap: 1rem;
  width: 100%
}

.border_cate_page {
  border: 1px solid #e4eaf3;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: -15px -15px 15px rgb(255 255 255),
              15px 15px 15px rgba(0,0,0,0.1),
              inset -50px -50px 50px rgba(255,255,255,0.2),
              inset 50px 50px 50px rgb(57 107 173 / 14%);
}

.img_cate {
  width: 100%;
}

.border_cate_page h5 {
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .cate_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-banner {
    display: none;
}

.cate_grid {
    columns: 2;
   
}
}

@media (max-width: 576px) {
  .cate_grid {
    grid-template-columns: 1fr;
  }

  .navbar .navbar-brand {
 
    padding-right: 19px;
   
}



.cate_grid {
    columns: 1;
 
}
.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 18px;
    height: 100%;
    top: 0;
    right: -2px;
    transform: skewX(0deg);
    background: #673AB7;
}
}