/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 15px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}


/* Introductory Section */
.intro {
    background: linear-gradient(to right, #ff6600, #ff4500); /* Warm gradient */
    color: white;
    text-align: center;
    padding: 100px 10%;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.intro a {
    color: black;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #222;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #111;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: white;
    color: #ff4500;
}



/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?technology,design') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    background: rgba(203, 68, 68, 0.6);
    padding: 50px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}
/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?technology,design') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Dark Overlay Effect */
.hero-overlay {
    background: rgba(255, 29, 29, 0.6); /* Semi-transparent overlay */
    padding: 50px;
    border-radius: 10px;
    max-width: 80%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Text Styling */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    animation: slideInDown 1s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-in-out;
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-overlay {
        max-width: 90%;
        padding: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}



/* Services Section */
.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 10%;
}

.service {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service i {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 15px;
}

.service h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #ff6600, #ff4500);
    text-align: center;
    color: white;
    padding: 50px 10%;
    margin-top: 50px;
}

.cta h2 {
    font-size: 2rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta a{
    color: black;
}

.btn {
    background: white;
    color: #ff4500;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #222;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 90%;
    }
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.4s;
}

/* Services Section */
.services {
    text-align: center;
    padding: 60px 10%;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    flex: 1;
    max-width: 30%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

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

.service img {
    width: 60px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.learn-more {
    text-decoration: none;
    color: #ff6600;
    font-weight: bold;
    transition: color 0.3s;
}

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



/*         About                */
/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
}

/* Hero Section - Parallax */
.about-header {
    background: url('https://source.unsplash.com/1600x900/?technology,teamwork') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.overlay {
    background: rgba(106, 16, 64, 0.6);
    padding: 50px;
    border-radius: 10px;
    color: white;
}

.about-header h1 {
    font-size: 3rem;
    margin: 0;
}

.about-header p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* Company Introduction */
.about-intro {
    text-align: center;
    padding: 60px 10%;
    background: white;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #ff4500;
}

.about-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    text-align: center;
    background: #f0f0f0;
    padding: 60px 10%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.team-card img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    margin-bottom: 10px;
}

.team-card h3 {
    font-size: 1.4rem;
}

.team-card p {
    font-size: 1rem;
    color: #777;
}

/* Testimonials */
.about-testimonials {
    background: linear-gradient(135deg, #ff6600, #ff4500);
    color: white;
    text-align: center;
    padding: 60px 10%;
}

.testimonial-slider {
    max-width: 700px;
    margin: 20px auto;
    font-size: 1.3rem;
}

.testimonial h4 {
    font-size: 1rem;
    margin-top: 10px;
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 50px 10%;
    background: white;
}

.about-cta h2 {
    font-size: 2.5rem;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #ff4500;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #222;
    transform: translateY(-3px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-intro, .about-team, .about-testimonials, .about-cta {
        padding: 40px 5%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
  }
  
  /* Full-Page Background */
  .contact-full {
    height: 70vh;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Contact Box */
  .contact-inner {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 350px;
    width: 90%;
  }
  
  .contact-inner h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .contact-inner p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
  }
  
  /* Button Group */
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .btn i {
    margin-right: 8px;
  }
  
  /* Specific Button Colors */
  .whatsapp {
    background: #25D366;
  }
  
  .whatsapp:hover {
    background: #1ebe57;
    transform: scale(1.03);
  }
  
  .sms {
    background: #007bff;
  }
  
  .sms:hover {
    background: #0056b3;
    transform: scale(1.03);
  }
  
  .call {
    background: #ff4500;
  }
  
  .call:hover {
    background: #c93200;
    transform: scale(1.03);
  }
  /* Container for the Form */
.form-container {
    background: #fff;
    padding: 2rem 2.5rem;
    margin: 10% 10%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
  }
  
  /* Form Styling */
  .contact-form h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #444;
  }
  
  .contact-form p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #777;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #ff6600;
    outline: none;
  }
  
  /* Submit Button */
  .btn-submit {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 1.5rem;
  }
  
  .btn-submit:hover {
    background: #cc5500;
    transform: translateY(-2px);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .form-container {
      padding: 1.5rem;
    }
  }
  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .contact-inner {
      width: 90%;
    }
  }
  


/* Footer Styles */
footer {
    background: #222; /* Darker shade for a modern look */
    color: white;
    padding: 40px 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #ff6600; /* Orange accent */
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a, 
.footer-contact a, 
.footer-social a {
    color: #bbbbbb; /* Light gray */
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
    display: block;
    margin: 6px 0;
}

.footer-links a:hover, 
.footer-contact a:hover, 
.footer-social a:hover {
    color: #ff6600; /* Orange on hover */
    transform: translateX(5px); /* Smooth slide effect */
}

/* Icons */
.footer-contact i, .footer-social i {
    margin-right: 10px;
    color: #bbbbbb; /* Default icon color */
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

/* Icon Hover Effect */
.footer-social a:hover i, .footer-contact a:hover i {
    color: #ff6600; /* Orange when hovered */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bbbbbb;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service {
        max-width: 90%;
    }
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #333;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Page Sections */
.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
