/* General Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004080;
    --accent-color: #ff9900;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #222;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ff4e08;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #000000;;
}

nav ul li a.active::after,
nav ul li a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    color: var(--primary-color);
    z-index: 1001;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: var(--light-bg);
}

.hero .container {
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    
}
.hero-image img {
    border-radius: 20px;
}
/* Featured Products Section */
.featured-products {
    background-color: #fff;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.category img {
    height: 200px;
    width: 100%;
    /* Fady Angelo
	object-fit: cover;*/
	object-fit: contain;
}

.category h3 {
    padding: 20px 20px 10px;
    font-size: 17px;
    color: var(--primary-color);
    text-align: center;
}

.category p {
    padding: 0 20px 20px;
    color: #666;
}

.category .btn {
    margin: 0 20px 20px;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* About Us Section */
.about-us {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-controls span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.slider-controls span:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Call to Action Section */
.cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 60px 0;
}

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

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p {
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Clients Page Styles */
.page-hero {
    background-color: #ff7c48;
    color: var(--light-text);
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.featured-clients {
    padding: 80px 0;
    background-color: #fff;
}

.client-category {
    margin-bottom: 60px;
}

.client-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(221px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Sectors Container */
.sectors-container {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Sector Section */
.sector-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #eee;
	padding: 0px !important;
}

.sector-header {
    background-color: #f9f9f9;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.sector-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.sector-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.sector-clients {
    padding: 25px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.sector-clients .client-logo {
    width: 195px;
    height: 195px;
    padding: 23px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sector-clients .client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sector-clients .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sector-header {
        padding: 15px 20px;
    }
    
    .sector-header i {
        font-size: 1.8rem;
    }
    
    .sector-header h3 {
        font-size: 1.2rem;
    }
    
    .sector-clients {
        padding: 15px;
        justify-content: center;
    }
    
    .client-logos {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 59px;
        padding: 15px;
    }
    
    .sector-clients .client-logo {
        width: 140px;
        height: 140px;
        padding: 15px;
        margin: 0 auto;
    }
    
    .client-logo img {
        height: 110px !important;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px;
    }
    
    .sector-clients .client-logo {
        width: 130px;
        height: 130px;
        padding: 12px;
    }
    
    .client-logo img {
        height: 100px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .sector-item {
        padding: 20px 15px;
    }
}

.client-logo {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    width: 100%;
    height: 150px;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10%;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0px;
    box-sizing: border-box;
}

.client-logo h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.client-logo p {
    color: #666;
}

.client-stories {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.stories-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-image {
    flex: 1;
    max-width: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 2;
    padding: 30px;
}

.story-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.story-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.story-content p {
    margin-bottom: 20px;
    color: #666;
}

.client-testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}
.cta-buttons .btn:hover {
    background-color: white !important;
   color: var(--primary-color) !important;
}
.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
}
button[type="submit"]:hover,.hover:hover  {
    background-color: #ff7c48 !important;
    color: white; /* Optional: improves text contrast */
    transition: background-color 0.3s ease;
}

.become-client-cta {
    background-color: #ff7c48;
    color: var(--light-text);
    text-align: center;
    padding: 60px 0;
}

.become-client-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.become-client-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 992px) {
    .story-card {
        flex-direction: column;
    }
    
    .story-image {
        max-width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    .client-logos {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light-text);
}

.footer-logo p {
    color: #aaa;
}

.footer-links h3,
.footer-products h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

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

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

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    margin-bottom: 20px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    border-radius: 0 4px 4px 0;
}

/* Services Page Styles */
.business-scope {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.scope-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.scope-section > h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
	/*border-bottom: 2px solid #eee; */
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.scope-section > h3 img {
    order: 2;
    max-width: 430px;
    height: auto;
    border-radius: 8px;
    margin: 0 0 0 20px;
	text-align:center;
	
}
/*
.divImgContainerServicesSection{
		display: flex;
        align-items: center; /* Vertically centers items */
        justify-content: center;
		vertical-align: middle;
}


.divImgContainerServicesSection img {
        position: absolute;
        top: 52%;
        transform: translate(-50%, -50%); /* Adjusts for image's own dimensions */
    }
*/
.scope-section > h3 p {
    order: 3;
    flex: 1 1 100%;
    margin: 5px 0 15px 0;
    padding-bottom: 15px;
    /* border-bottom: 2px solid #eee; */
    color: #666;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
}

.scope-section > p {
    margin: 0 0 25px 0;
    color: #666;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/*.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
	
	.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: rgba(0, 102, 204, 0.1);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
}*/

.service-card {
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 5px 0 15px 0;
    padding-bottom: 15px;
    /* border-bottom: 2px solid #eee; */
    color: #666;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.6;
}

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




.service-card h3 {
    color: #333;
    margin: 15px 0 10px;
    font-size: 1.3rem;
	text-align: left;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
	text-align: justify;
}

.service-card ul {
    padding-left: 20px;
    margin: 10px 0;
}

.service-card ul li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 15px;
    text-align: left;
	text-align: justify;
}

.service-card ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scope-section {
        padding: 20px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Ensure icons are properly sized */
.fas.fa-sensor:before {
    content: '\f2db';
}

.social-media {
    display: flex;
    gap: 15px;
}

/* Carousel Styles */
.carousel-section {
    padding: 0;
    background-color: var(--dark-bg);
}

.carousel-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    z-index: 2;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: var(--primary-color);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

.social-media a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.footer-bottom p {
    color: #aaa;
}

.footer-bottom-links a {
    color: #aaa;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

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

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 4px;
    }
    
    .mobile-menu:hover {
        background-color: rgba(0, 102, 204, 0.2);
    }
    
    .mobile-menu.active {
        background-color: var(--primary-color);
    }
    
    .mobile-menu.active i {
        color: white;
    }
    
    .mobile-menu i {
        font-size: 20px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 15px;
    }

    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .footer-newsletter button {
        border-radius: 4px;
        width: 100%;
    }
}
/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
	text-decoration: none;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
	color: #FFF;
	/*color:#ff4e08;*/
}
