/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind', sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
html, body {
    background-color: #f8f9fa;
    color: #242424;
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

/* Global Typography Hierarchy (Index Page Reference) */
h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 72px;
    color: #F76B2B;
    margin-bottom: 10px;
}
h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #F76B2B;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h3 {
    font-size: 28px;
    font-weight: 700;
    color: #F76B2B;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h4, h5, h6 {
    font-weight: 600;
    color: #242424;
    margin-bottom: 15px;
}
p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 16px;
}
li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #242424;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
button {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}
label, input, textarea, select {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #242424;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center {
    text-align: center;
}
.mt-3 {
    margin-top: 1rem;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 45px;
}
.nav-menu ul {
    display: flex;
    gap: 25px;
}
.nav-menu ul li a {
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.nav-menu ul li a:hover {
    color: #F76B2B;
}

/* Dropdown Menu */
.nav-menu ul li.dropdown {
    position: relative;
    padding-bottom: 10px; 
    margin-bottom: -10px;
}
.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background-color: #0b1120;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}
.nav-menu ul li.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu li {
    width: 100%;
    border-bottom: none !important;
}
.dropdown-menu li a {
    color: #ffffff !important;
    padding: 20px 25px !important;
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.dropdown-menu li a:hover {
    background-color: #F76B2B;
    color: #ffffff !important;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 98, 93, 0.85); /* Teal overlay */
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    color: #F76B2B;
    font-size: 60px;
    font-weight: 300;
    line-height: 72px;
    margin-bottom: 5px;
}
.hero p {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    max-width: 1000px;
    margin: 0 auto 30px;
    transition: opacity 0.3s ease-in-out;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
.btn {
    display: inline-block;
    padding: 15px 28px 12px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-primary {
    background: #F76B2B;
    color: #ffffff;
    border: 1px solid #F76B2B;
}
.btn-primary:hover {
    background: #0b1120;
    border-color: #0b1120;
    color: #ffffff;
}
.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #F76B2B;
}
.btn-secondary:hover {
    background: #0b1120;
    border-color: #0b1120;
    color: #ffffff;
}
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dot {
    cursor: pointer;
    width: 12px;
    height: 8px;
    background: #ccc;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}
.dot.active {
    width: 25px;
    background: #F76B2B;
}

/* Features Section */
.features {
    padding: 80px 0 60px;
    background: #fff;
    position: relative;
    z-index: 10;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    background: #fff;
    padding: 0 15px 30px;
    text-align: center;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    border-right: 4px solid #cccccc;
    border-bottom: 4px solid #cccccc;
    border-radius: 0;
    margin-top: 60px;
}
.feature-card .icon-wrapper {
    background: #c6c6c6;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 25px;
}
.feature-card img {
    height: 60px;
    transition: transform 0.3s ease;
}
.feature-card:hover img {
    transform: scale(1.15);
}
.feature-card h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #F76B2B;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f4f4f4;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 5px;
}
.about-content {
    flex: 1;
}
.about-content h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F76B2B;
    text-transform: uppercase;
}
.about-content p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 16px;
}
.about-content strong {
    font-weight: inherit;
    color: inherit;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #eee;
    text-shadow: 1px 1px 2px #ccc;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
}

/* Products Section */
.products-section {
    padding: 30px 0 60px;
    background: #fff;
}
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin-bottom: 30px;
}
.products-grid:last-child {
    margin-bottom: 0;
}
.product-card {
    background: #EFEFEF;
    padding: 15px;
    flex: 0 0 calc(25% - 15px);
    border-radius: 2px;
    box-shadow: 2px 2px 2px 2px #b9b8b8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-card .icon-circle {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 15px 0;
    box-shadow: none;
}
.product-card .icon-circle img {
    max-height: 32px;
    max-width: 32px;
    transition: transform 0.3s ease;
}
.product-card:hover .icon-circle img {
    transform: scale(1.25);
}
.product-card p {
    font-size: 16px;
    font-weight: 400;
    color: #242424;
    text-transform: uppercase;
    text-align: left;
}

/* R&D Section */
.rnd-section {
    padding: 60px 0;
    background: #fff;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #F76B2B;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.section-title p {
    font-size: 16px;
    color: #F76B2B;
    margin-bottom: 40px;
}
.rnd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rnd-card {
    background: transparent;
    perspective: 1000px;
    height: 216px;
    border-radius: 0;
}
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.rnd-card:hover .flip-box-inner {
    transform: rotateY(180deg);
}
.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 2px solid #a4a4a4;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.flip-box-front {
    background: #31414e;
    color: #fff;
}
.flip-box-back {
    background: #73992d;
    color: #333;
    transform: rotateY(180deg);
}
.flip-box-front img {
    max-width: 100%;
    height: auto;
    display: block;
}
.flip-box-front .rnd-card-title {
    color: #fff;
}
.flip-box-back .rnd-card-title {
    color: #333;
    margin: 0;
}
.rnd-card-title {
    margin: 15px 0 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background: #fff;
}
.clients-title p {
    color: #242424;
    font-size: 16px;
    margin-bottom: 16px;
}
.clients-title h3 {
    color: #F76B2B;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 400;
}
.clients-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.client-logo {
    border: 1px solid #e1e1e1;
    background: #fff;
    width: 115px;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Map Section */
.map-section {
    margin-bottom: 30px;
}
.map-section iframe {
    display: block;
}

/* Footer */
.footer {
    background: #0B0B0B;
    color: #ccc;
    padding: 28px 0 60px;
    position: relative;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}
.footer-col h4 {
    color: #F8F9FA;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}
.footer-col p, .footer-col address {
    font-size: 16px;
    line-height: 26px;
    font-style: normal;
    color: #FFFFFF;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-col ul li {
    margin: 0;
    position: relative;
}
.footer-col ul li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}
.footer-col ul li a {
    font-size: 16px;
    color: #A5A5A5;
    transition: color 0.3s;
    display: block;
    padding: 8px 0px 8px 15px;
}
.footer-col ul li a:hover {
    color: #F76B2B;
}
.orange-link {
    color: #F76B2B;
    text-decoration: none;
    transition: color 0.3s;
}

.orange-text {
    color: #F76B2B;
    text-decoration: none;
    transition: color 0.3s;
}
.orange-text:hover {
    color: #fff;
}
.footer-bottom {
    background: #141414;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
}
.footer-bottom p {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
}
.back-to-top {
    position: absolute;
    bottom: 15px;
    right: 30px;
    background: #F76B2B;
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    text-decoration: none;
}
.back-to-top:hover {
    background: #d9534f;
    color: #fff;
}

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: #fff;
    text-align: left;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.55); /* Dark blue overlay */
}
.banner-content {
    position: relative;
    z-index: 10;
}
.banner-content p {
    font-size: 18px;
    color: #d4d4d4;
    font-weight: 400;
}
.banner-content a {
    color: #d4d4d4;
    transition: color 0.3s ease;
}
.banner-content a:hover {
    color: #F76B2B;
}
.page_tittle.activebreadcrumb {
    color: #FFF;
    font-size: 38px;
    font-family: 'Hind', sans-serif;
    margin: 0px 0px 8px;
    font-weight: 700;
    line-height: 46px;
}
.bread_crumb {
    font-size: 18px;
    font-family: 'Hind', sans-serif;
}
.bread_crumb a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    line-height: 25px;
}

.bread_crumb :hover {
    color: #F76B2B;
   
}


.bread_crumb i {
    font-size: 14px;
    color: #FFFFFF;
}
.activeColor {
    color: #D4D4D4;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
}
.main-title {
    color: #F76B2B;
    font-size: 32px;
    font-family: 'Hind', sans-serif;
}
.breadcrumb-home {
    color: #ffffff;
    transition: color 0.3s ease;
}
.breadcrumb-home:hover {
    color: #F76B2B;
}

/* About Page Content */
.about-page-content {
    padding: 60px 0;
    background-color: #fff;
}
.main-title {
    color: #F76B2B;
    font-size:32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 38px;
}


.about-block {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}
.flex-row-reverse {
    flex-direction: row-reverse;
}
.about-img {
    flex: 1;
}
.about-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-text {
    flex: 1;
}
.about-text h3 {
    color: #F76B2B;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
}
.about-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}
.about-text ul li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
    list-style-type: disc;
}
.full-width-text {
    margin-bottom: 50px;
}
.full-width-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
}

/* Generic Page Content */
.page-content {
    padding: 60px 0;
    background-color: #fff;
}
.table-responsive {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.data-table th, .data-table td {
    border: 1px solid #242424;
    padding: 6px 10px;
    text-align: left;
    font-size: 15px;
    color: #242424;
}
.data-table td {
    font-weight: 700;
}
.data-table th {
    font-weight: 700;
}
.data-table td strong {
    font-weight: 700;
}

/* Reaction Grid */
.reaction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.reaction-grid ul {
    list-style-type: disc;
    padding-left: 20px;
}
.reaction-grid ul li {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 25px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    background: #fff;
    box-shadow: 2px 2px 2px 2px #cec8c5;
    padding: 15px;
    height: 100%;
}
.team-card-inner {
    background: #EFEFEF;
    padding: 20px 20px 0px;
    margin-bottom: 35px;
    height: 100%;
    text-align: center;
}
.team-card-inner h4 {
    color: #F76B2B;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
}
.team-card-inner p {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: #242424;
}

/* Contact Us Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.contact-box {
    border: 1px solid #ddd;
    padding: 30px 20px;
    height: 100%;
}
.contact-box h3 {
    color: #061538;
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 25px;
    text-transform: none;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}
.contact-icon {
    border: 1px solid #F76B2B;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F76B2B;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-info h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 5px;
    color: #061538;
}
.contact-info p {
    font-size: 16px;
    line-height: 26px;
    color: #242424;
    font-weight: 400;
}
.enquiry-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.enquiry-form input, .enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}
.enquiry-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 15px;
}
.enquiry-form button {
    background: #F76B2B;
    color: #fff;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}
.enquiry-form button:hover {
    background: #e65c00;
}

/* Site Visit Section */
.site-visit-section {
    padding: 20px 0 60px;
    background-color: #fff;
}
.site-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    padding-bottom: 2px;
}
.site-slides {
    position: relative;
    width: 100%;
    height: 600px;
}
.site-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.site-slide.active {
    opacity: 1;
    z-index: 2;
}
.site-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.site-dot {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: #555;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: center;
}
.site-dot.active {
    background: transparent;
    border: 1.5px solid #555;
    width: 8px;
    height: 8px;
    transform: none;
}
.site-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    transition: background 0.3s;
}
.site-slider-btn:hover {
    background: rgba(0,0,0,0.7);
}
.site-slider-btn.prev {
    left: 15px;
}
.site-slider-btn.next {
    right: 15px;
}

/* CTA Section */
.cta-section {
    background-color: #25324c;
    padding: 60px 0;
    color: #fff;
}
.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
}

.signature-block {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
}

/* API Product Grid */
.api-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.api-product-card {
    background: #fcfcfc;
    padding: 0 15px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-right: 4px solid #cccccc;
    border-bottom: 4px solid #cccccc;
    margin-top: 40px;
}
.api-product-card .icon-wrapper {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.api-product-card img {
    height: 30px;
    transition: transform 0.3s ease;
}
.api-product-card:hover img {
    transform: scale(1.25);
}
.api-product-card h3 {
    font-size: 16px;
    line-height: 26px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F76B2B;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-info h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 5px;
    color: #061538;
}
.contact-info p {
    font-size: 16px;
    line-height: 26px;
    color: #242424;
    font-weight: 400;
}
.enquiry-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.enquiry-form input, .enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}
.enquiry-form textarea {
    height: 120px;
    resize: vertical;
    margin-bottom: 15px;
}
.enquiry-form button {
    background: #F76B2B;
    color: #fff;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}
.enquiry-form button:hover {
    background: #e65c00;
}

/* Site Visit Section */
.site-visit-section {
    padding: 20px 0 60px;
    background-color: #fff;
}
.site-slider-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    padding-bottom: 2px;
}
.site-slides {
    position: relative;
    width: 100%;
    height: 600px;
}
.site-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.site-slide.active {
    opacity: 1;
    z-index: 2;
}
.site-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.site-dot {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: #555;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: center;
}
.site-dot.active {
    background: transparent;
    border: 1.5px solid #555;
    width: 8px;
    height: 8px;
    transform: none;
}
.site-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    transition: background 0.3s;
}
.site-slider-btn:hover {
    background: rgba(0,0,0,0.7);
}
.site-slider-btn.prev {
    left: 15px;
}
.site-slider-btn.next {
    right: 15px;
}

/* CTA Section */
.cta-section {
    background-color: #25324c;
    padding: 60px 0;
    color: #fff;
}
.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
}

.signature-block {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 16px;
}

/* API Product Grid */
.api-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.api-product-card {
    background: #fcfcfc;
    padding: 0 15px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-right: 4px solid #cccccc;
    border-bottom: 4px solid #cccccc;
    margin-top: 40px;
}
.api-product-card .icon-wrapper {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.api-product-card img {
    height: 30px;
    transition: transform 0.3s ease;
}
.api-product-card:hover img {
    transform: scale(1.25);
}
.api-product-card h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #242424;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid, .rnd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    .about-container {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 75px;
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    .nav-menu ul li {
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-menu ul li a {
        display: block;
        padding: 15px 20px;
    }
    .dropdown-menu {
        position: static;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transform: none;
        background-color: #f8f9fa;
        box-shadow: none;
        padding: 0;
        min-width: 100%;
        margin-top: 0;
    }
    .nav-menu ul li.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        height: auto;
    }
    .dropdown-menu li a {
        color: #333 !important;
        padding: 10px 40px !important;
    }
}

@media (max-width: 768px) {
    .features-grid, .rnd-grid, .reaction-grid, .gallery-grid, .team-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .product-card {
        flex: 0 0 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    .about-block {
        flex-direction: column;
        gap: 15px;
    }
    .flex-row-reverse {
        flex-direction: column;
    }
    .site-slides {
        height: 300px;
    }
    .cta-section h2 {
        font-size: 1.3rem !important;
    }
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
        word-break: break-word;
    }
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1.2rem;
        line-height: 1.4;
        min-height: auto;
    }
    .signature-block {
        flex-direction: column;
        gap: 20px;
    }
    .enquiry-form .form-row {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.6s; }

.delay-3 {
    animation-delay: 1.0s;
}
/* Responsive Tabs & Tables */
@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        width: 100%;
    }
    .tab-link {
        width: 100%;
        text-align: center;
        border-radius: 0;
        margin-right: 0;
        margin-bottom: 2px;
        white-space: normal !important;
        padding: 10px 15px !important;
        font-size: 14px;
    }
    .tab-link:first-child {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    .tab-link:last-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .tabs-content {
        padding: 15px !important;
    }
    .data-table th, .data-table td {
        padding: 4px 6px !important;
        font-size: 13px !important;
    }
}

/* Counter Grid */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.counter-item h3 {
    background-color: transparent;
    color: #F76B2B;
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}
.counter-item h3 span {
    color: #F76B2B;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        line-height: 14px;
        margin-bottom: 5px;
    }
}



