/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-behavior: smooth;
  padding: 0;
}
h4{
  font-weight: bold;
}
/* ===== NAVBAR ===== */
.nav-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  width: 80%;
  margin-top: 20px;
  position: sticky;
  top: 15px;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 90px;
  height: 60px;
  object-fit: cover;
}

.nav-left h4 {
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  cursor: pointer;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links li:hover {
  color: #00b4ff;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  transition: transform 0.3s ease, filter 0.3s ease;
  z-index: 5;
}

.hero h1 span {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sequential animation delay */
.hero h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero h1 span:nth-child(2) { animation-delay: 0.4s; }
.hero h1 span:nth-child(3) { animation-delay: 0.6s; }
.hero h1 span:nth-child(4) { animation-delay: 0.8s; }
.hero h1 span:nth-child(5) { animation-delay: 1s; }
.hero h1 span:nth-child(6) { animation-delay: 1.2s; }
.hero h1 span:nth-child(7) { animation-delay: 1.4s; }
.hero h1 span:nth-child(8) { animation-delay: 1.6s; }
.hero h1 span:nth-child(9) { animation-delay: 1.8s; }
.hero h1 span:nth-child(10) { animation-delay: 2s; }
/* Container */
/* Container */
.button-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Base button style */
.button-1 button {
  position: relative;
  padding: 14px 32px;
  border: 2px solid #00bfff;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Create the fill effect */
.button-1 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00bfff;
  transition: left 0.4s ease;
  z-index: -1;
}

/* Text stays above the fill */
.button-1 button span {
  position: relative;
  color: rgb(3, 3, 3);
  transition: color 0.4s ease;
}

/* Hover effect — fills the button */
.button-1 button:hover::before {
  left: 0;
}

/* Change text color and slight zoom on hover */
.button-1 button:hover span {
  color: #000; /* ✅ text turns black now */

}

.button-1 button:hover {
  transform: scale(1.05);
}

/* Click effect */
.button-1 button:active {
  transform: scale(0.97);
}


.B-1 {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #007BFF; /* Base color */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.B-1::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.B-1:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.B-1:hover {
  transform: scale(1.05);
  background: #0056b3; /* Darker shade on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== CONTAINER ===== */
.container {
  width: 80%;
  margin-top: -20vh;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  color: #fff;
  z-index: 10;
  position: relative;
}

.container h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #00bfff;
}

.container-1,
.container-2,
.container-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
  padding: 10px;
}

.container-1.show,
.container-2.show,
.container-3.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image Containers */
.img-c-1, .img-c-2, .img-c-3 {
  position: relative;
  width: 45%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.img-c-1 img,
.img-c-2 img,
.img-c-3 img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 1s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.container-1.show .img-c-1 img:nth-child(1),
.container-2.show .img-c-2 img:nth-child(1),
.container-3.show .img-c-3 img:nth-child(1) { left: 0%; z-index: 1; transition-delay: 0.2s; }

.container-1.show .img-c-1 img:nth-child(2),
.container-2.show .img-c-2 img:nth-child(2),
.container-3.show .img-c-3 img:nth-child(2) { left: -25%; z-index: 2; transition-delay: 0.8s; }

.container-1.show .img-c-1 img:nth-child(3),
.container-2.show .img-c-2 img:nth-child(3),
.container-3.show .img-c-3 img:nth-child(3) { left: -50%; z-index: 3; transition-delay: 1.4s; }

/* Hover */
.img-c-1 img:hover,
.img-c-2 img:hover,
.img-c-3 img:hover {
  left: 0 !important;
  transform: scale(1.1);
  filter: brightness(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 10;
  transition: all 0.4s ease;
}

/* Text Containers */
.content-c-1, .content-c-2, .content-c-3 {
  width: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.content-c-1 h3,
.content-c-2 h3,
.content-c-3 h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.content-c-1 p,
.content-c-2 p,
.content-c-3 p {
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 10px;
}

.content-c-1 li,
.content-c-2 li,
.content-c-3 li {
  color: #ffd700;
  list-style: disc;
  margin-left: 20px;
}

.content-c-1 button,
.content-c-2 button,
.content-c-3 button {
  background: #00b4ff;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.content-c-1 button:hover,
.content-c-2 button:hover,
.content-c-3 button:hover {
  background: #007bff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-1 { width: 90%; flex-wrap: wrap; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .container-1, .container-2, .container-3 {
    flex-direction: column;
    text-align: center;
  }
  .img-c-1, .img-c-2, .img-c-3, .content-c-1, .content-c-2, .content-c-3 {
    width: 100%;
  }
}
/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
  color: #fff;
  background: #0a0f1c;
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Tabs */
.portfolio-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.portfolio-tab {
  padding: 12px 30px;
  border: 2px solid #00bfff;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-tab.active,
.portfolio-tab:hover {
  background: #00bfff;
  color: #0a0f1c;
}

/* Portfolio Items */
.portfolio-contents {
  position: relative;
  
}

.portfolio-item {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  
}

.portfolio-item.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 180, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.portfolio-card h3 {
  color: #00bfff;
  margin-bottom: 10px;
}

.portfolio-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.portfolio-card button {
  background: #00bfff;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-card button:hover {
  background: #008ccc;
}
/* View All Button */
.view-all {
  margin-top: 40px;
  text-align: center;
}

.view-all a {
  display: inline-block;
  background: #00bfff;
  color: #0a0f1c;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.view-all a:hover {
  background: transparent;
  color: #00bfff;
  border-color: #00bfff;
  transform: translateY(-3px);
}

/* contact form */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px;
}

.contact-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-container:hover {
  transform: scale(1.02);
}

.contact-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #00ffd0;
  text-align: center;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: border 0.3s;
}

input:focus, textarea:focus {
  border-color: #00ffd0;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #00ffd0, #0075ff);
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00e6c0, #0060e6);
}

.form-message {
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  color: #00ffd0;
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-container {
    padding: 25px;
  }

  .contact-container h2 {
    font-size: 22px;
  }
}
/* General Footer Styling */
.main-footer {
    background-color: #1a1e26; /* Dark background from the image */
    color: #e0e6f1; /* Light text color */
    padding: 60px 0 30px; /* Padding top, bottom, and sides */
    font-family: 'Poppins', sans-serif; /* Consistent with previous sections */
     width: 100%;
    box-sizing: border-box;
}

.main-footer a {
    color: #e0e6f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #007bff; /* Highlight color for links */
}

/* Top Section - Columns Layout */
.footer-top {
    display: flex;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    justify-content: space-between;
    max-width: 1200px; /* Max width of content */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Side padding */
    gap: 30px; /* Space between columns */
}

.footer-column {
    flex: 1; /* Each column takes equal space initially */
    min-width: 200px; /* Minimum width before wrapping */
    margin-bottom: 30px;
}

/* Brand Column (Leftmost) */
.footer-brand {
    flex: 1.5; /* Give more space to the brand column */
    min-width: 280px; /* Ensure brand column doesn't get too small */
}

.footer-logo {
    display: flex;
    align-items: left;
    margin-bottom: 20px;
}

.logo-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1e26; 
    padding: 5px; /* Optional padding around logo */
    border-radius: 8px; /* Optional rounded corners */
    height: 80px; /* Fixed height */
    width: 80px;  /* Make it square for better alignment */
    overflow: hidden; /* Hide any overflow */
    margin-bottom: 150px;
}
.logo-icon img {
    height: 100%; /* Make image fit container height */
    width: auto;  /* Maintain aspect ratio */
    display: block;
}
.logo-text {
    font-size: 1.8em;
    font-weight: 600;
    color: #e0e6f1;
    margin-top: 20px;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #aebacd; /* Slightly lighter grey for description */
}

/* Newsletter Signup */
.newsletter-signup {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #3a404b; /* Darker border */
    background-color: #252b36; /* Dark input background */
    color: #e0e6f1;
    border-radius: 5px 0 0 5px; /* Rounded left corners only */
    font-size: 0.9em;
    outline: none;
}

.newsletter-input::placeholder {
    color: #7a8291;
}

.newsletter-button {
    background-color: #007bff; /* Blue button */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0; /* Rounded right corners only */
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Navigation Columns (Company, Services, Resources) */
.footer-column h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #e0e6f1;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    font-size: 0.9em;
    color: #aebacd;
}

.footer-column ul li a:hover {
    color: #007bff;
}

/* Bottom Section - Copyright, Social, Bottom Links */
.footer-bottom {
    border-top: 1px solid #3a404b; /* Separator line */
    padding-top: 30px;
    margin-top: 50px; /* Space above the line */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 0; /* Adjust padding for the bottom part */
}

.copyright {
    font-size: 0.85em;
    color: #aebacd;
    margin-right: 20px; /* Space between copyright and social */
    margin-bottom: 15px; /* For wrapping on smaller screens */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px; /* For wrapping on smaller screens */
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: invert(100%); /* Makes black icons white */
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: translateY(-3px); /* Lift effect on hover */
}

.footer-links-bottom {
    display: flex;
    gap: 25px;
    font-size: 0.85em;
    margin-bottom: 15px; /* For wrapping on smaller screens */
}

.footer-links-bottom a {
    color: #aebacd;
}

.footer-links-bottom a:hover {
    color: #007bff;
}

/* -------------------- Responsive Adjustments -------------------- */
@media (max-width: 992px) {
    .footer-top {
        justify-content: center; /* Center columns when they wrap */
    }
    .footer-column {
        flex: 1 1 30%; /* Two columns per row */
        max-width: 30%;
    }
    .footer-brand {
        flex: 1 1 100%; /* Brand column takes full width */
        max-width: 100%;
        height: 50%;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-description {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .newsletter-signup {
        max-width: 400px; /* Limit width of newsletter on center */
        margin-left: auto;
        margin-right: auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .copyright, .social-links, .footer-links-bottom {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 1 1 45% ; /* One column per row */
        max-width: 45%;
        text-align: center;
    }
    .footer-column h3, .footer-column ul {
        text-align: center; /* Center text in columns */
    }
    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-links-bottom {
        font-size: 0.8em;
    }
    .newsletter-signup {
        flex-direction: column;
        max-width: 100%;
    }
    .newsletter-input, .newsletter-button {
        border-radius: 5px; /* Full border radius for stacked elements */
        margin-right: 0;
        margin-bottom: 0px; /* Space between input and button */
    }
    .newsletter-button {
        margin-bottom: 0;
    }
}
       /* Styling for the container */
.social-links {
    text-align: center; /* Centers the icons */
    display: flex; /* Use flexbox to manage icon spacing */
    justify-content: center; /* Center the icons horizontally */
    align-items: center;
    max-width: 1200px; /* Optional: Constrain width on very large screens */
    margin: 0 auto;
}

/* Styling for the icon links */
.social-links a {
    /* Set the icon color to white as requested */
    color: white; 
    font-size: 20px; /* Slightly larger size for better tapping on mobile */
    margin: 0 15px; /* Increase spacing between icons for better touch targets */
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 20px;
    /* Ensure the link is a good tap target */
    display: inline-block;
    padding: 10px; 
}

/* Optional: Change color on hover (mostly for desktop) */
.social-links a:hover {
    color: #6a9cfa; /* Light gray on hover */
}

/* Media Query for Smaller Screens (e.g., Mobile Phones)
    This adjusts the size slightly for a more compact look on mobile.
*/
@media (max-width: 600px) {
    .social-links a {
        font-size: 24px; /* Slightly smaller icons on very small screens */
        margin: 0 10px;  /* Reduce margin on smaller screens */
    }
}
.insta:hover{
    color: #efa835;
}

.p-1{
  margin-top: 20px;
}
.list-1{
  padding: 5px;
  gap: 10px;
  margin-bottom: 10px;
}