/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-main { color: #003366; font-weight: bold; font-size: 1.5rem; }
.logo-sub { color: #00bcd4; font-weight: bold; font-size: 1.5rem; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover { color: #00bcd4; }

.cta-btn {
    background: #00bcd4;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Slider (CSS Animation) */
.hero {
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    width: 200%; /* Two slides */
    height: 100%;
    animation: slideRotation 10s infinite;
}

.slide {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

@keyframes slideRotation {
    0% { transform: translateX(0); }
    45% { transform: translateX(0); }
    50% { transform: translateX(-50%); }
    95% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #003366;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
}

/* Stats */
.stats {
    background: #003366;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
}

.stat-item strong { 
    font-size: 2.5rem; 
    display: flex;
    align-items: center;
 }

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 20px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 #00bcd4;
}

/* Products */
.products {
    background: #f4f4f4;
    padding: 80px 0;
}

.section-title { text-align: center; margin-bottom: 40px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 0;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-card:hover { transform: translateY(-10px); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-preview { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2rem; }
}
/* Contact Form Styling */
.contact-section { padding: 80px 20px; text-align: center; background: #fff; }
.section-subtitle { margin-bottom: 30px; color: #666; }

.contact-container { max-width: 600px; margin: 0 auto; }

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover { background: #003366; }
.locations {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    justify-content: center;
}
.loc-card {
    background: #003366;
    color: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}
.map-link {
    display: inline-block;
    margin-top: 15px;
    color: #00bcd4;
    text-decoration: none;
    font-weight: bold;
}
/* Floating Telegram Button */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0088cc; /* Telegram Blue */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.floating-telegram i {
    font-size: 24px;
}

.floating-telegram:hover {
    background-color: #006699;
    transform: scale(1.05);
    color: white;
}

/* On small screens, show only the icon to save space */
@media (max-width: 600px) {
    .floating-telegram span {
        display: none;
    }
    .floating-telegram {
        padding: 15px;
        border-radius: 50%;
    }
}
/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%); /* Makes logos look uniform and professional */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .client-logo img {
        max-width: 80px;
    }
}
.footer {
  padding: 40px 0;
  background-color: #1a1a1a; /* Dark background */
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* Spacing between icons */
}

.social-icon {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */

/* TikTok - Hover turns to their signature Red */
.fa-tiktok:hover {
  color: #EE1D52;
}

/* Instagram - Uses a gradient effect on hover */
.fa-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Facebook - Hover turns to Facebook Blue */
.fa-facebook:hover {
  color: #1877F2;
}

/* X (Twitter) - Hover turns to solid Black or a dark grey */
.fa-x-twitter:hover {
  color: #000000;
}