/* Base Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e98;
    --accent-color: #2ec4b6;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --grey-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --max-width: 1300px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden !important;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto;
}

.underline {
    height: 4px;
    width: 160px;
    background: var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.btn {
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    outline: none;

}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    outline: none !important;
    border-color: var(--primary-color);

}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Header Section */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}
.logo-img {
    width: 80px;
    height: 80px;
    /* border-radius: 50%; */
    margin-right: 2px;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.navbar-nav{
    gap:10px;
}

.nav-link {
    font-weight: 550;
    color: var(--dark-color);
    padding: 8px 15px 5px;
    margin: 0 2px;
    position: relative;
    
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.header-contact-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.header-contact-link i {
    margin-right: 5px;
}

.header-contact-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--secondary-color) 0%,  var(--primary-color) 100%); */
    background:   linear-gradient(135deg, #0f172a 100%,  #0f172a 100%, #0f172a 100% );
    color: white; 
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    height: 620px;
    
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(50deg,  white, white, white);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* font-weight: bolder; */
}

.cta-buttons {
    margin-top: 2.5rem;
    gap:20px;
}

.hero-shapes .shape {
    position: absolute;
    opacity: 0.2;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    bottom: -50px;
    right: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 40%;
    right: -50px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-image {
    border-radius: var(--border-radius);
    /* box-shadow: var(--box-shadow); */
    overflow: hidden;
    position: relative;
    /* left: 90px; */

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    width: 100%;
    height: 70%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.stats-container {
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background-color: rgba(249, 249, 249, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey-color);
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: white;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(150px * 12); /* Width of each logo * number of logos */
    animation: scroll 30s linear infinite;
}

.partner-logo {
    min-width: 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    /* filter: grayscale(100%); */
    /*opacity: 0.7;*/
    transition: var(--transition);
    max-height: 80px;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 6)); /* Half the width of the track */
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.service-card {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 2.5rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--grey-color);
}

/* Industries We Serve Section Styles */
.industries-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.industry-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px;
    transition: var(--transition);
}

.industry-name {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.industry-content {
    padding: 25px;
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.industry-card:hover h3 {
    color: var(--primary-color);
}

.industry-card p {
    color: var(--grey-color);
    margin-bottom: 15px;
}

.industry-products {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.industry-products li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.industry-products li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    margin-top: 3rem;
}

.contact-info-box, .contact-form-box {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-info-box {
    background-color: var(--secondary-color);
    color: white;
}

.contact-info-box h3, .contact-form-box h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-color);
    color: #adb5bd;
    padding: 70px 0 0;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-info p {
    margin-bottom: 1.5rem;
}

.social-box{
    display: block !important;
    
}



.social-box a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    padding-right: 50px;
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    height: calc(100% - 10px);
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

/* Animation Classes */
.animate-text {
    animation: fadeInDown 1s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.tagline-text{
        font-size:16px;margin-top:-10px
}
    

/* Responsive Styles */
@media (max-width: 991px) {
    body{
        
        overflow-x:hidden;
    width : 100%
    }
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin-top: 10px;
    }
    
    .contact-info {
        margin-top: 15px;
        
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        min-width: auto;
        min-height: 100px;
    }
}

@media (max-width: 767px) {


    .logo-text {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    .tagline-text{
        font-size:10px;margin-top:-5px
    }
    .logo-img {
        width: 55px;
        height: 52px;
        /* border-radius: 50%; */
        margin-right: 0px;
    }
    body{
        width:110%;
        overflow-x:hidden;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-section {

    overflow-x: hidden !important;
    
    
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-section, .categories-section, .services-section, .contact-section {
        padding: 70px 0;
    }
    
    .partners-section {
        padding: 50px 0;
    }
    
    .contact-info-box, .contact-form-box {
        padding: 25px;
    }
}

@media (max-width: 575px) {
 
    body{

        overflow-x:hidden;
    width : 100%
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons .btn:last-child {
        margin-left: 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
}


/* Responsive adjustments for industries section */
@media (max-width: 991px) {



    .industries-section {
        padding: 70px 0;
    }
    
    .industry-image {
        height: 160px;
    }
}

@media (max-width: 767px) {

     body{
         overflow-x:hidden !important;
         width : 100%
    }
    .industry-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .industries-section {
        padding: 50px 0;
    }
    
    .industry-content {
        padding: 20px 15px;
    }
}