:root {
    --primary-color: #0056b3;
    --secondary-color: #003d82;
    --accent-color: #007bff;
    --text-color: #333333;
    --light-bg: #ffffff;
    --dark-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
} 

/* Global Styles */
body {
    font-family: "Times New Roman", Times, serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* background-color: #25d366; */
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
    transition: filter 0.3s ease;
  }
  
  .whatsapp-float:hover img {
    filter: drop-shadow(0 0 5px #128C7E);
  }
  

/* Cursor Utility */
.cursor-pointer {
    cursor: pointer;
}


/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: white !important;
}

.brand-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: white;
}

.nav-link {
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px) scale(1.1);
}

.navbar-toggler {
    border: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
        border-radius: 10px;
        overflow: hidden;
    }

    .nav-link {
        padding: 1rem !important;
        width: 100%;
        text-align: left;
        margin: 0.5rem;
    }

    .navbar-toggler {
        margin-right: 1rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, var(--primary-color));
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Projects */
.projects-section {
    padding: 8rem 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(37, 99, 235, 0.9));
    color: white;
    padding: 3rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-info i {
    color: white;
    font-size: 1.8rem;
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info i:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
}

.contact-form button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer a:hover {
    color: white;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .project-card img {
        height: 300px;
    }

    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
}
 /* Custom Navbar Styles */
 .custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.2rem;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50, #3498db);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
}

 /
.btn-primary {
    background-color: #2c3e50;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3498db;
    transform: translateY(-2px);
}

/* Slick Slider Custom Styles */
.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.slick-dots li.slick-active button {
    background: white;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 1rem;
        max-width: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
.contact-card {
    transition: all 0.3s ease;
}
.contact-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

        /* Contact Section Styles */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 8rem 0;
        }

        .contact-info {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .icon-container {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .icon-container i {
            font-size: 1.5rem;
            color: white;
        }

        .info-content h4 {
            margin: 0 0 0.5rem 0;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .info-content p {
            margin: 0;
            font-size: 1rem;
            color: var(--text-color);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background: var(--primary-color);
            color: white;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-weight: 500;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
            outline: none;
        }

        .form-control::placeholder {
            color: #6c757d;
            opacity: 0.7;
        }

        .btn-primary {
            padding: 1rem;
            font-weight: 600;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 4rem 0;
            }

            .contact-info,
            .contact-form {
                padding: 2rem;
            }

            .contact-item {
                margin-bottom: 1.5rem;
            }

            .form-group {
                margin-bottom: 1rem;
            }
        }
        .contact-info-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 30px;
            background: #f0f4f8;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
          }
          
          .contact-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
          }
          
          .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
          }
          
          .contact-card .icon {
            font-size: 28px;
            color: #007bff;
            background-color: #e8f0fe;
            padding: 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          
          .contact-card .text h5 {
            margin: 0;
            font-size: 18px;
            color: #0e1a35;
          }
          
          .contact-card .text p {
            margin: 5px 0 0;
            color: #555;
            font-size: 15px;
          }
/* Desktop mode image sizing */
@media (min-width: 992px) { /* Bootstrap's lg breakpoint */
    img.product-image {
        max-width: 500px;   /* Max width for desktop */
        max-height: 400px;  /* Max height for desktop */
        width: auto;        /* Allow width to auto adjust */
        height: auto;       /* Allow height to auto adjust */
        object-fit: contain; /* Keep aspect ratio and fit within bounds */
    }
}

/* For smaller screens, keep full width */
img.product-image {
    width: 100%;
    height: auto;
}
.custom-margin-bottom {
    margin-bottom: 5rem; /* or any size you want */
}
.swiper-slide {
    position: relative;
  }
  
  .overlay-content {
    position: absolute;
    top: 50%;       /* vertically center */
    left: 50%;      /* horizontally center */
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 80%;     /* or adjust as needed */
    color: black;
  }
  @media (max-width: 767.98px) {
    .stat-card {
      margin-bottom: 20px;
      text-align: center;
    }
    .stat-card h3 {
      font-size: 2rem; /* bigger font on mobile */
    }
    .stat-card p {
      font-size: 1rem;
    }
  }
  
/* General nav styling */
.custom-navbar {
    background-color: #111;
    padding: 10px 0;
    color: white;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-link i {
    font-size: 18px;
}

/* Hide menu toggle and show only icons on mobile */ 
@media (max-width: 768px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-links span {
        display: none; /* Hide text */
    }

    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 0; /* Prevent leftover text space */
    }

    .nav-link i {
        font-size: 22px;
    }
}

  
          