@font-face {
    font-family: 'nor-font';
    src: url('Font/norwester.otf') format('otf');
}
:root{
    --orange-color:#fc6839;
    --teal-color: #a4cdce;
    --yellow-color: hsl(46, 100%, 68%);
    --play-font: "Playfair", serif;
    --norwester-font: 'nor-font', sans-serif;
}
body {
    font-family: var(--play-font);
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: var(--norwester-font);
}
.bottom-border{
    border-bottom: 2px solid black;
    padding: 10px;
}
.nav-link {
    font-weight: 500;
    margin-left: 15px;
    font-size: 1.2rem;
    color: black;
}

.hero-section {
    padding: 80px 0;
}
.left-container{
    width: 60%;
}
.hero-section h1 {
    font-size: 3.5rem;
    color: black;
}

.explore-btn {
    background-color: #FF5733;
    border: none;
    padding: 12px 59px;
    font-size: 1.2rem;
    font-family: var(--norwester-font);
    font-weight: bold;
    border: 3px solid black;
    border-radius: 6px;
    color: white;
    box-shadow: 5px 5px 0 0 black;
    transition: .3s ease-in-out;
}
.explore-btn:hover{
    box-shadow: 0 0 0 0 ;
    translate: 5px 5px;
}

.hero-image {
    max-width: 90%;
    height: auto;
}

.bg-heading{
    background-color: var(--orange-color);
    border-radius: 15px;
    font-size: 1rem;
    /* padding: 0px 173px; */
    width: 200px;
}
.bg-paragraph{
    font-weight: 800;
    line-height: 1;
    font-size: 1rem;
}

/* servics css */


.services-div{
    display: flex;
    flex-direction: column;
    /* text-align: center; */
    /* justify-content: center; */
    align-items: center;
}
.services-section{
    padding: 10px 150px;
}
.services-section h2{
    font-size: 4rem;
    color: black;
}
.services-section p{
    color: black;
}
/* Window-Style Card */
.window-card {
    background-color: #fff;
    border: 2px solid #000; /* Bold outline for retro "window" look */
    border-radius: 4px;
    overflow: hidden;
    transition: .3s all ease-in-out;
  }
  .window-card:hover .window-card-header{
    background-color: #0d6efd !important;
    color: white;
  }
  /* Header */
  .window-card-header {
    border-bottom: 1px solid #000;
    font-weight: 600;
    color: black;
    transition: .3s all ease-in-out;
    /* You can tweak the height, font-size, or any detail here */
  }
  .shake {
    animation: shake-animation 0.5s;
}
@keyframes shake-animation {
    0% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}
  .window-card:hover .window-close-icon{
    background-color: red;
    color: white;
    
  }
  /* Close Icon (top-right) */
  .window-close-icon {
    display: inline-block;
    background-color: #fff;
    color: #000;
    width: 20px;
    transition: .3s all ease-in-out;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border: 1px solid #000;
    border-radius: 2px;
    cursor: pointer;
  }
  
  /* Body */
  .window-card-body h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: black;
    /* padding: 20px 10px; */
    padding-left: 10px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  
  /* Footer (with "NEXT" / "VIEW MORE" button) */
  .window-card-footer {
    text-align: right;
  }
  
  /* Buttons: NEXT & VIEW MORE */
  .next-btn, .view-more-btn {
    background-color: #FF5733;
    border: none;
    padding: 7px 29px;
    font-size: 1rem;
    font-family: var(--norwester-font);
    font-weight: bold;
    border: 3px solid black;
    border-radius: 6px;
    color: white;
    box-shadow: 5px 5px 0 0 black;
    transition: .3s ease-in-out;
  }
  
  .next-btn:hover,
  .view-more-btn:hover {
    box-shadow: 0 0 0 0 ;
    translate: 5px 5px;
  }
  


  /* About Section */


  /* About Section */
.about-section {
    text-align: center;
    margin-top: 6rem;
    background: url("../images/Asset\ 3.png")no-repeat center center/cover;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    font-family: var(--norwester-font);
}

/* Card Design */
.about-card {
    background-color: white;
    /* max-width: 900px; */
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid black;
    position: relative;
    padding: 20px;
    box-shadow: 5px 5px 0px black;
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid black;
}

.nav-tabs .nav-item {
    margin-bottom: -2px;
}

.nav-tabs .nav-link {
    border: none;
    font-weight: bold;
    color: black;
    padding: 10px 15px;
    font-size: 1.5rem;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid black;
    background: none;
}

/* Content Area */
.tab-content {
    text-align: left;
    font-size: 1rem;
    color: black;
}

/* Industries Section */

/* Industries Section */
/* Industries Section */
.industries-section {
    position:relative;
    padding: 50px 0;
}

.industries-section::before {
    content: "";
    position: absolute;
    top: 50%; /* Starts from the middle of Industries section */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #B2D4D4; /* Light Blue Background */
    z-index: -1; /* Keeps it behind the content */
}
.text-start{
    padding: 10px 70px;
}
.text-start h2{
    font-size: 3rem;
    color: black;
}
.industries-card {
    background-color:var(--yellow-color); /* Yellow card */
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 2px solid black;
    box-shadow: 5px 5px 0px black;
    max-width: 900px;
}
.industries-card::before{
    content: "";
    position: absolute;
    top: 45%;
    left: -15px;
    width: 104%;
    height: 61%;
    background-color: #ffffff;
    z-index: -1;
    border-radius: 10px;

}
/* Industry Item (Logo + Text) */
.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Logo Images */
.industry-item img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    object-fit: contain;
    filter: invert(0);
}

/* Industry Names */
.industry-item span {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    text-align: left;
    font-family: var(--norwester-font);
}


/* Contact Section */
.contact-section {
    background-color: #B2D4D4; /* Light blue background */
    padding: 50px 0;
}

.contact-section h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.5rem;
}

/* Contact Button */
.contact-btn {
    background-color: #FF5733;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-family: var(--norwester-font);
    font-weight: bold;
    border: 3px solid black;
    border-radius: 6px;
    color: white;
    box-shadow: 5px 5px 0 0 black;
    transition: .3s ease-in-out;
}
.contact-btn:hover{
    box-shadow: 0 0 0 0 ;
    background-color: #FF5733;
    
    border: 3px solid black;
    color: white;
    translate: 5px 5px;
}
.contact-left-box{
    text-align: left;
}
.contact-right-box{
    text-align: right;
    align-items: center;
    display: flex;
    justify-content: end;
}


/* Strategies section */

.strategies-section{
    background-color: var(--orange-color);
}
.strategies-img-div{
    display: flex;
    justify-content:end;
    align-items: center;
}
.strategies-img{
    height: 100px;
    object-fit: contain;
}

/* Modernization Section */
.modernization-explorer {
    background-color: white;
    padding: 50px 0;
}

/* Sidebar (File Explorer Style) */
.explorer-sidebar {
    padding: 20px;
    color: white;
    border-right: 2px solid black;
}

.explorer-sidebar h3 {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.explorer-sidebar .nav-link {
    padding: 220px 50px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-align: left;
    border: none;
    padding: 21px 0px;
    display: block;
    width: 100%;
    transition: background 0.3s ease;
    border-bottom: 2px solid black;
}
.strategies-para{
    color: white;
}
/* .explorer-sidebar .nav-link:hover,
.explorer-sidebar .nav-link.active {
    background-color: black;
} */

/* Content Area (Right Panel) */
.explorer-content {
    border-radius: 5px;
    color: white;
}

.explorer-content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.explorer-content h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
}

.explorer-content ul {
    padding-left: 20px;
}

.explorer-content ul li {
    font-size: 1rem;
    margin-bottom: 5px;
    color: white;
}

/* Footer Section */
.footer-section {
    background-color: var(--yellow-color); /* Yellow background */
    padding-top: 40px;
}

/* Headings */

.footer-section .fw-bold{
    font-family: var(--norwester-font);
}
.footer-section h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* List Styles */
.footer-section ul {
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: black;
}

.footer-section ul li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #D84315; /* Darker orange on hover */
}

/* Contact Info */
.footer-section p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Copyright */
.footer-bottom {
    border-top: 2px solid black;
    background-color: var(--yellow-color);
    font-size: 0.9rem;
}