/* Main Headers */
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
}
html, body {
    width: 100%;
    min-height: 75vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform-origin: top left; /* Ensures zoom is applied from the top-left corner */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    position: relative; /* Keeps the layout in place */
}

body {
    transform: scale(1); /* Initial scale */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}
.header {
    min-height: 75vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/Background_Robot.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav {
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img {
    width: 200px; /* Increased logo size */
    height: auto; /* Maintain aspect ratio */
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: aliceblue;
    text-decoration: none;
    font-size: 28px;
    padding: 8px 12px;
    display: block;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #36f462;
    display: block;
    margin: auto;
    transition: 0.5s;
  }
  .nav-links ul li:hover::after{
    width: 100%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
  }
/* Hero Section */
.text-box {
    width: 90%;
    color: aliceblue;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 65px;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 22px;
    color: aliceblue;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: rgb(47, 0, 255);
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
    color: #ccc;
}
nav .fa {
    display: none;
  }  
.newsletter {
    margin-top: 35px;
}
.newsletter input {
    width: 25%; /* Reduced input width */
    padding: 8px;
    border: 2px solid black; /* Always black border */
    border-radius: 5px;
    font-size: 14px;
    outline: none; /* Removes default focus outline */
    text-align: center;
}

.newsletter input:focus {
    border: 2px solid black; /* Ensures it stays black on focus */
}

.newsletter button {
    padding: 8px 10px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.newsletter button:hover {
    background: #d32f2f;
}
.footer .newsletter p{
    text-align: center;
}

/* Social Icons */
.icons {
    margin-top: 20px;
}
.icons i {
    font-size: 24px;
    margin: 0 15px;
    cursor: pointer;
    transition: 0.3s;
}
.icons {
    color: #36f48f;
    margin: 2px 25px;
    cursor: pointer;
    padding: 30px 0;
  }
.icons i:hover {
    color: #f44336;
}
/* Footer Bottom */
.footer-bottom {
    margin-top: 15px;
     background: transparent;
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
    color: rgb(20, 23, 189);
    opacity: 0.8;
}

.footer-bottom a {
    color: rgb(15, 34, 177);
    text-decoration: none;
    margin: 0 10px;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
.footer-right p {
    font-size: 10px; /* Adjust the size as needed */
    color: rgb(96, 19, 19);

}
/* Updated Footer */
.footer{
    width: 100%;
    text-align: center;
    padding:30px 0;
  
  }
  .footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 30px;
  }
  .footer p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 1250px;
    margin: 0 auto 15px auto; /* Centers text blocks */
    text-align: justify;
}
  .footer-bottom {
    margin-top: 10px;
    font-size: 10px;
    opacity: 0.8;
}
.Sub-header{
    height: 65vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/Background.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    text-align: center;
    color: aliceblue;
}
.Sub-header h1{
  margin-top: 100px;
    color: #e3f2fd;
    font-size: 65px;
    font-weight: bold;
}
.heading-large {
    font-size: 60px;
    color: #f7eef7;
    font-family: 'Arial Black', sans-serif;
  }

  .heading-small {
    font-size: 24px;
    color: #d0d30f;
    font-family: 'Georgia', serif;
  }
  .main-heading {
    font-size: 60px;
    color: #efe9ef;
    font-family: 'Arial Black', sans-serif;
  }
.Sub-header h2{
    margin-top: 80px;
    color: #e3f2fd;
    font-size: 75px;
    font-weight: bold;
  }
  .hero-btn2 {
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
    color: rgb(164, 125, 17);
    border: 1px solid #d5911a;
    padding: 12px 34px;
    font-size: 18px;
    background: transparent;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.hero-btn2:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
    color: #ccc;
}
  .about {
    width: 50%;
  background: #e3f2f7;
  border-radius: 10px;
  text-align: left;
  margin: 50px auto;
  padding: 30px;
  box-sizing: content-box;
  transition: 0.4s ease-in-out;
  text-align: left;
  }
  .about:hover{
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  }
  .about::not(:last-child){
  margin-right: 20px; /* Ensures spacing between columns */
}

.about h2 {
    text-align: center;
    font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
  color: #333;
}

.about p {
    font-size: 16Px;
    color: #0e0c0c;
    line-height: 1.0;
    margin-bottom: 10px;
    text-align: Center;
}
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    margin: 10px 0;
    text-align: center;
}
.solutions-col {
    position: relative;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: rgb(17, 16, 16);
    padding: 20px;
    border-radius: 8px;
    margin-top: 50px; /* Adds space below the previous section */
}

.solutions-col p {
    font-size: 1.4em;
    font-weight: bold;
}

.solutions-col strong {
    color: #0995c0;
}

.text-overlay {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
}
.Design-Development h2 {
    margin-top: 60px;
    color: #e3f2fd;
    font-size: 32px;
    font-weight: bold;
  }
/* Image Slider */
.slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0;
}
.slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 12s linear infinite;
}
/* Pause animation only when hovering over an image */
.slider-track span img:hover {
    animation-play-state: paused;
}
/* Ensure animation still applies to the track */
.slider-track:hover {
    animation-play-state: running;
}

.slider-track span img {
    width: 450px;
    height: 260px;
    border-radius: 8px;
    object-fit: cover;
}
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
/* Design & Development Points */
.design-development-points {
    background: #ffff; /* PCB-like dark background */
    padding: 30px 20px;
    margin: -40px auto 80px;
    width: 60%; /* Adjusted width for centering */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(12, 13, 12, 0.2); /* Green glow effect */
    text-align: center; /* Centers the heading */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the entire content */
}
.design-development-points h3 {
    font-size: 24px;
    color: #0f0feb; /* Neon green */
    margin-bottom: 15px;
    font-weight: 700;
}
.points-container {
    display: flex;
    justify-content: space-between;
}

.design-development-points ul {
    list-style: none;
    padding: 0;
    width: 80%; /* Adjusted width for balance */
    text-align: left; /* Keeps text left-aligned */
}

.design-development-points ul li {
    font-size: 18px;
    color: #080907; /* Light green for readability */
    margin: 10px 0;
    padding-left: 35px; /* Space for checkmark */
    position: relative;
}

.design-development-points ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #00ff00; /* Bright green checkmark */
    font-weight: bold;
    font-size: 22px;
    width: 25px; /* Ensures alignment */
    text-align: center;
}
.Domain {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
}
.Domain p {
    font-size: 22px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    max-width: 1400px; /* Increased max-width for larger images */
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    color: rgb(32, 165, 195);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.wrapper i:first-child {
    left: 15px;
}

.wrapper i:last-child {
    right: 15px;
}

.wrapper .slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 15px; /* Increased space between images */
}

.slider img {
    flex: 0 0 calc(33.33% - 15px); /* Adjust width for 3 images per row */
    width: calc(33.33% - 15px); /* Increase width */
    height: auto;
    object-fit: cover;
    max-height: 450px; /* Further increase image height */
    border-radius: 12px;
}
/* Map styling */
.map {
    width: 100%;
    top: 60%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Address section styling */
.address {
    margin-bottom: 20px;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #080907;
}

/* Button styling */
.btn {
    background-color: #0077cc;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: #00a390;
}

/* Form container styling */
.form-container {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.form-container select[name="inquiry_type"] {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}


/* Close button styling */
/* Close button styling (circle shape) */
.close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff4d4d;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Make it circular */
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.close-btn:hover {
    background: #cc0000;
}
/* Input and textarea styling */
input, textarea {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}
/* Submit button styling */
.submit-btn {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}
.submit-btn:hover {
    background-color: #218838;
}
@media (Max-width: 1080px) {
    .text-box h1 {
        font-size: 22px;
    }
    .text-box p {
        margin: 10px 0 40px;
        font-size: 14px;
        color: aliceblue;
    }
    .nav-links ul li {
        display: block;
    }
        .nav-links{
            position:absolute;
            background: rgb(198, 245, 198);
            height: 100vh;
            width: 200px;
            top: 0;
            right: -200px;
            text-align: left;
            z-index: 2;
            transition: 1s;
        }
        .nav-links ul li a {
            font-size: 20px;
            color: #0e0c0c;
        }    
        .hero-btn {
            padding: 12px 24px;
            font-size: 15px;
                   }
        nav .fa {
            display: block;
            color: #a39393;
            margin: 10px;
            font-size: 22px;
            Cursor:pointer;

        }
        .nav-links ul {
            padding: 30px;

        }
        .newsletter input {
            font-size: 11px;
            width: 50%;
    }
    .newsletter button {
    font-size: 11px;
    }
    .footer h4 {
        font-size: 16px;
    }

    .footer p {
        font-size: 12px;
        padding: 0 10px;
        
    }
    .Sub-header h1{
    font-size: 22px;
    }
    .heading-large {
        font-size: 20px;
      }
  
      .heading-small {
        font-size: 16px;
      }
      .slider-track span img {
        width: 300px;
        height: 180px;
}
.design-development-points ul li {
    font-size: 12px;
    margin: 8px 0;
    padding-left: 25px; /* Space for checkmark */
    
}
.design-development-points {
    width: 80%;
    margin: 20px auto;
    padding: 20px 15px;
}
.design-development-points h3 {
    font-size: 20px;
}
.design-development-points ul {
    width: 100%;
}
.about {
    width: 80%;
    padding: 10px;
}

.about h2 {
    font-size: 20px;
}

.about p {
    font-size: 12px;
}

.hero-btn2 {
    font-size: 12px;
    padding: 10px 0px;
    width: 80%;
    left: 40px;
    transform: none;
    text-align: center;
}
.about ul li {
    font-size: 12px;
}
.main-heading {
    font-size: 35px;
    color: #efe9ef;
    font-family: 'Arial Black', sans-serif;
  }
  .solutions-col {
    padding: 15px;
    margin-top: 30px;
}

.solutions-col p {
    font-size: 1.1em;
}
.Domain i {
    display: none;
}

.Domain .slider img {
    height: 100px;
}
.map {
    height: 200px;
    top: auto; /* Remove or adjust top positioning for mobile */
    margin-bottom: 15px;
    border-radius: 8px;
}
}


