* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
        font-family: 'Muli';
  
      
}



 /* Top Contact Bar */
 .top-contact-bar {
    background-color: #d80100;
    color: white;
    font-size: 0.9rem;
}

.social-media a {
    color: white;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #83b94a;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: #fff;
}

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #d80100;
}

@media (max-width: 992px) {
    .contact-info span {
        font-size: 0.8rem;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        margin-top: 10px;
    }
}


  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  
  
  /* Slide wrapper */
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .slide-bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  
  /* Gradient + glass effect overlay */
  .slide-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.0), rgba(5, 138, 215, 0.0));
    /* backdrop-filter: blur(3px);  */
    z-index: 1;
  }
  
  /* Text content */
.slide-content {
    position: absolute;
    top: 40%;
    left: 15%; /* Changed from 50% */
    transform: translateY(-50%); /* Removed X-axis translation */
    text-align: left; /* Changed from center */
    z-index: 3;
    color: #fff;
    max-width: 600px; /* Added max-width for better readability */
    width: 80%; /* Added width constraint */
    padding: 20px;
  }
  
  .slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2; /* Added for better spacing */
  }
  
  .slide-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px; /* Constrain paragraph width */
  }
  
  .cta-button {
    display: inline-block;
    background: #0b8be6; /* Primary button color */
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background: #d80100;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  /* Slider controls */
  .slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
  }
  
  .slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(3, 3, 3, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .slider-dot.active {
    background:  #d80100;
  }
  


/* Cards Section */
.cards-section {
    padding: 80px 5%;
    background: linear-gradient(90deg,  #0b8be6 0%,  #0b8be6 50%,  #0b8be6 58.85%,  #0b8be6 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-10px);
   
}


.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #0b8be6;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000;
}

.card-btn1 {
    display: inline-block;
    padding: 12px 10px!important;
    background: #0b8be6;
    color:  #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;

}

.card-btn:hover {
    background: white;

}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card {
        max-width: 100%;
    }
}


  .core-services {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.core-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 20%);
    background-size: 300px 300px;
    opacity: 0.6;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-header .subtitle {
    display: block;
    font-size: 1.1rem;
    color: #d80100;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, rgb(29, 106, 14), #A4FF61);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgb(238, 41, 45), #e31227);
    transition: height 0.3s ease;
}

.service-card:hover::before {
    height: 10px;
}

.service-card:hover {
    transform: translateY(-15px);
    /* box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15); */
}

.card-icon1 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgb(227, 23, 50), #880505);
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.card-icon2 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgb(234, 34, 48), #d80100);
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon1 {
    transform: rotateY(180deg);
    background: linear-gradient(to right, rgb(219, 5, 19), #e42d4b);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #d80100;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #7f8c8d;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color:  #d80100;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #265504;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        max-width: 100%;
    }
}



/* Enterprise Solutions Section */
.enterprise-solutions {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #f9fbfd, #eef2f5);
    position: relative;
}

.enterprise-solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10" fill="none" stroke="%23007bff10" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-left: 4px solid  #d80100;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,123,255,0.03) 0%, rgba(0,123,255,0.01) 100%);
    z-index: 0;
}

.solution-card:hover::after {
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,123,255,0.02) 100%);
}

.card-content {
    position: relative;
    z-index: 1;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.solution-card h3 i {
    margin-right: 15px;
    color: #d80100;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-card:hover h3 i {
    transform: rotate(15deg);
    background: rgba(0, 123, 255, 0.2);
}

.solution-card p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin-left: 65px;
}

/* Animation */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    opacity: 0;
    animation: cardEntrance 0.8s ease forwards;
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.3s; }
.card-3 { animation-delay: 0.5s; }
.card-4 { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 1000px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .solution-card {
        padding: 30px;
    }
    
    .solution-card h3 {
        font-size: 1.3rem;
    }
    
    .solution-card p {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .solution-card h3 i {
        margin-right: 10px;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}




/* Partners Section */
.partners-section {
    padding: 100px 5%;
    background-color: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.partner-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-category {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d02626, #d80100);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.category-title {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.partner-list {
    list-style: none;
}

.partner-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.partner-item:hover {
    background: rgba(0, 123, 255, 0.05);
}

.partner-icon {
    width: 30px;
    height: 30px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #d80100;
    font-size: 0.9rem;
}

.partner-name {
    font-size: 1rem;
    color: #495057;
}

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

.partner-category {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.category-1 { animation-delay: 0.2s; }
.category-2 { animation-delay: 0.4s; }
.category-3 { animation-delay: 0.6s; }
.category-4 { animation-delay: 0.8s; }
.category-5 { animation-delay: 1s; }

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .partner-category {
        min-width: 100%;
    }
}



/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #d80100;
}

.footer-about p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-products h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-products h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #d80100;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
}

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

.footer-links a,
.footer-products a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #d80100;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #ecf0f1;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: #d80100;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #d80100;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-menu a {
        margin: 0 10px;
    }
}


/* Footer Styles */
footer {
    background-color: #000;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #d80100;
}

.footer-about p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links h3, 
.footer-products h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-products h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #d80100;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
}

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

.footer-links a,
.footer-products a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #d80100;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: #ecf0f1;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: #d80100;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color:  #d80100;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-menu a {
        margin: 0 10px;
    }
}




/* projects */
.project-item {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .project-item:hover {
    transform: scale(1.03);
  }
  

  /* Show dropdown when hovering */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
}



.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.benefits-list {
    list-style-type: none;
    padding-left: 0;
}
.benefits-list li {
    font-size: 1rem;
    margin-bottom: 10px;
}
.btn-visit {
    background-color: #d80100;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}
.btn-visit:hover {
    background-color: #d80100;
}



.contact-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }

  .contact-card:hover {
    transform: translateY(-5px);
  }

  .contact-icon {
    font-size: 40px;
    color: #d80100;
    margin-bottom: 15px;
  }

  .form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .form-control, .form-select {
    border-radius: 8px;
  }

  .map-container iframe {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  h3.section-title {
    color: #d80100;
    font-weight: 700;
    margin-bottom: 30px;
  }