/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

/* Base styles */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Font families */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Color variables */
:root {
    --navy: #0F1C44;
    --red: #E63946;
    --soft-gray: #E5E7EB;
    --white: #FFFFFF;
    --theme-color: #EF1D26;
    --color-dark: #111111;
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
}

/* Navbar and Header Styles */
.header-top {
    padding: 8px 0 10px;
    background: var(--color-dark);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.header-top.hide {
    margin-top: -60px;
    opacity: 0;
    visibility: hidden;
}

.header-top::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    width: 10%;
    top: 0;
    left: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top::after {
    content: "";
    position: absolute;
    background: var(--theme-color);
    clip-path: polygon(20% 1%, 100% 0, 100% 100%, 0% 100%);
    width: 10%;
    top: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
}

.header-top-contact ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.header-top-contact li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.header-top-social a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.header-top-social img {
    width: 80px; /* Adjusted for mobile responsiveness */
    vertical-align: middle;
}

.navbar {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: var(--box-shadow2);
    z-index: 3;
    transition: top 0.3s;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
}

.navbar-brand img {
    height: 70px;
    width: 120px;
    border-radius: 5px;
}

.navbar-nav .nav-link {
    color: var(--navy) !important;
    margin: 0 15px;
    font-weight: 700;
    font-size: 16px;
}

.dropdown-menu {
    max-height: 500px;
    overflow-y: auto;
}

/* .nav-right {
    margin-left: 20px;
    display: flex;
    align-items: center;
} */

/* Styling for the nav-right container */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 15px;
}

/* Styling for the sidebar button container */
.sidebar-btn {
    display: inline-flex;
    align-items: center;
}

/* Styling for the nav-right-link button */
.nav-right-link.button {
    background-color: #1a1a1a; /* Dark background for contrast */
    color: #ffffff; /* White icon color */
    border: none;
    border-radius: 8px; /* Rounded corners */
    padding: 5px 10px; /* Comfortable padding */
    font-size: 1.5rem; /* Larger icon size */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect for the button */
.nav-right-link.button:hover {
    background-color: red; /* Blue background on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); /* Enhanced shadow on hover */
}

/* Focus state for accessibility */
.nav-right-link.button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(228, 15, 15, 0.312); /* Blue focus ring */
}

/* Icon styling */
.nav-right-link.button i.fa.fa-bars {
    font-size: 1.6rem; /* Slightly larger icon */
}

#google_translate_element {
    margin-left: 20px;
}

.sidebar-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.sidebar-wrapper {
    width: 400px;
    height: 100%;
    background: #f05c5c;
    position: absolute;
    right: 0;
    padding: 20px;
    box-sizing: border-box;
    color: black;
}
.sidebar-contact ul li a{
color: white;
}

.sidebar-social a{
    color: white;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-section .swiper {
    width: 100%;
    height: 80%;
}

.hero-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.hero-section .swiper-button-prev {
    left: 10px;
}

.hero-section .swiper-button-next {
    right: 10px;
}

.hero-section .swiper-pagination {
    bottom: 10px;
}

.hero-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--theme-color);
}

        .about-left {
    position: relative;
}

    .about-experience {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 0;
    left: 0;
    background:black;
    border-radius: 15px;
    padding: 10px 20px 10px 10px;
    color: white;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-experience-icon {
    color: white;
    font-size: 45px;
    width: 70px;
    height: 70px;
    line-height: 68px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 15px;
}

.site-title-tagline{
  color: var(--theme-color);
  font-size:22px;
}

.heading1{
   color: var(--theme-color);
}


.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
}

.theme-btn {
    font-size: 16px;
    color: var(--color-white);
    padding: 12px 20px;
    transition: all .5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
}


.counter-area {
    position: relative;
    background: var(--theme-color);
    z-index: 1;
}

.pb-30 {
    padding-bottom: 30px;
}
.pt-30 {
    padding-top: 30px;
}

.counter-area::before
 {
    content: "";
    position: absolute;
    background-image: url(../img/shape/01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .15;
    z-index: -1;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}


.counter-box .icon {
    position: relative;
    text-align: center;
    font-size: 40px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    line-height: 110px;
    color: var(--white);
    border: 5px solid var(--white);
    background: var(--color-dark);
    z-index: 1;
}

.counter-box .counter {
    display: block;
    line-height: 1;
    color: var(--white);
    font-size: 50px;
    font-weight: 600;
}

.counter-box .title {
    color: var(--white);
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}



/* Headings */
h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
}

h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

h3 {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

h4 {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--navy);
}

h5 {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
}

section.bg-navy h1,
section.bg-navy h2,
section.bg-navy h3,
section.bg-navy h4,
section.bg-navy h5 {
    color: var(--white);
}

section.bg-navy p {
    color: var(--white);
}

/* Buttons */
.btn-red {
    background-color: var(--theme-color); 
    border-color: var(--red);
    color: var(--white);
    font-size: 1rem;
    border-radius: 8px;
    padding:7px;
    text-decoration: none;
}

.btn-red:hover {
    background-color: var(--theme-color);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 5px var(--red);
}

/* Cards */
.card {
 
    transition: all 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: var(--navy);
    border: 2px solid var(--red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    background: var(--soft-gray) !important;
    color: var(--navy) !important;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
    transform: scale(1.05);
}

section.bg-soft-gray .card {
    background: linear-gradient(145deg, #E5E7EB, #D1D5DB);
}

section.bg-soft-gray .card:hover {
    background: var(--white) !important;
}

.card h5,
.card p {
    color: var(--navy);
}

section.bg-navy .card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

section.bg-navy .card h5,
section.bg-navy .card p {
    color: var(--navy);
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-navy {
    background-color: var(--navy);
}

.bg-soft-gray {
    background-color: var(--soft-gray);
}

/* Footer */
footer {
    background: linear-gradient(145deg, var(--navy), #0a1536);
    border-top: 4px solid var(--red);
}

footer a {
    color: var(--soft-gray);
    font-size: 0.9rem;
    text-decoration: none;
}

footer a:hover {
    color: var(--red) !important;
}

footer p {
    font-size: 0.875rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--soft-gray);
    color: var(--navy);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--red);
    color: var(--white);
}

/* Form inputs */
.form-control {
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid var(--red);
    color: var(--navy);
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 5px var(--red);
}

textarea.form-control {
    resize: vertical;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    h4, h5 { font-size: 1.125rem; }
    .navbar-brand img { height: 40px; }
    .navbar-brand img { width: 60px; }
    .navbar-brand span{
        font-size: 9px;
    }
    .isocertificate img{
       display:none;
    }
    .card { margin: 0 auto; max-width: 300px; }
    footer .social-icon { width: 35px; height: 35px; font-size: 1rem; }
    .header-top-wrapper { padding: 5px 20px; }
    .hero-section .swiper-slide img { height: auto; }

    /* Make header-top responsive */
    .header-top-wrapper {
     
        flex-direction: column;
        text-align: center;
        padding: 5px 10px;
    }

    .header-top-contact{
        margin-bottom: 10px;
    }

    .header-top-contact ul {
     display: flex;
        /* flex-direction: column; */
        gap: 10px;
    }

    .header-top-contact li a {
        font-size: 9px;
    }

    .header-top-social a {
        margin: 0 5px;
    }

    .header-top-social img {
        width: 60px; /* Reduced size for mobile */
    }

    .hero-section{
     height: auto;
    }

    .hero-section .swiper {
    width: 100%;
    height:auto;
    }

   .about-img img {
  max-width: 100%;   /* container se bahar nahi niklegi */
  height: auto;      /* ratio maintain karega */
  display: block;    /* extra spacing remove */
}

.about-area{
 margin-top: 50px;
 margin-bottom: 50px;
}
.nav-right {
        display: none;
    }


    
}

/* Industries Section */
#industries {
    background-image: url('images/industries-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#industries .container {
    position: relative;
    z-index: 10;
}

#industries .bg-opacity-40 {
    background-color: rgba(0, 0, 0, 0.4);
}

#industries h2 {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    #industries { background-position: top; }
    #industries h2 { font-size: 2rem; }
}

/* new section css product range */

.keywords-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.keywords-list li {
  display: flex;              /* saare li ek line ki tarah honge */
  justify-content: center;    /* center align */
  align-items: center;
  width: 100%;                /* equal width force karega */
  min-height: 45px;           /* height equal rakhne ke liye */

  margin-bottom: 8px;         /* spacing */
  text-align: center;
  background-color: #EF1D26;
}

.keywords-list a {
  flex: 1;                    /* text ko pura width lene do */
  display: block;
  padding: 8px;
  text-decoration: none;
  color:white;             /* tumhara text-navy color */
}


.keywords-list a:hover {
    color: white;
}

.location-section .location-heading {
    display: block;
    margin-top: 20px;
}

.location-subHeading {
    display: block;
    font-size: 1.2rem;
    color: #0F1C44;
    margin-bottom: 10px;
}

.inner-box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.inner-box a {
    color: #0F1C44;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.inner-box a:hover {
    color: #E63946;
}

.inner-box hr {
    margin: 5px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.pricing-block {
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-md-4 {
        margin-bottom: 20px;
    }
    .site-title {
        font-size: 1.5rem;
    }
    .location-subHeading {
        font-size: 1rem;
    }
    .inner-box {
        padding: 10px;
    }
    .show-div .row {
        flex-direction: column;
    }
    .pricing-block {
        width: 100%;
        margin-bottom: 15px;
    }
}