@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
        background-color: #00003170;
    color: white;
    position: sticky;
    top: 0; 
    z-index: 1000;
}

.logo img {
    width: 70px;      
    height: 70px;      
    border-radius: 50%;
    display: block;    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d8d8d89d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* Responsive section */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #2b1a6d;
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        transform: translateY(-200%);
        transition: transform 0.4s ease-in;
        border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }
}

.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    height: 87vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: white;
    box-sizing: border-box;
}
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    background-color: #00043f00;
    box-sizing: border-box;
}


/* Style for the video */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 120%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(0.84);
  object-fit: cover;
  z-index: -1;
}


.content {

  top: 50%;
  left: 50%;
  margin-top: 40px;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); 
  padding: 20px 40px;
  border-radius: 100px;
}


.text-btn {
    background-color: #00043f00;
    background-repeat: repeat;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.text-btn h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    margin-bottom: .5rem;
    color: #e2e2e2;
    font-weight: 700;
}

.text-btn p {
    font-size: clamp(1rem, 3vw, 2.6rem);
    margin-bottom: 2rem;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.hero-button {
    padding: 12px 28px;
    background-color: #1f9aff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}
.hero-button:hover{
    box-shadow: 0 0 30px dodgerblue;
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 1rem;
    }

    .hero-button {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 1rem 0.5rem;
    }

    .hero-button {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}
.mission-passion-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.text-block {
    flex: 1 1 45%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111;
    text-align: center;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .text-block {
        flex: 1 1 100%;
    }

    .text-block h2 {
        font-size: 1.8rem;
    }

    .text-block p {
        font-size: 1rem;
    }
}

.services-section {
    padding: 100px 20px;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.service-card h3 i {
    color: #0077ff;
    /* Icon color */
    font-size: 1.5rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}
.projects-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
    color: #111;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #111;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 30px;
}

.project-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 1rem;
    line-height: 1.5;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .project-overlay h3 {
        font-size: 1.6rem;
    }

    .project-overlay p {
        font-size: 0.9rem;
    }
}
 #contact {
     background-color: #f0f0f0;
     padding: 80px 0;
     display: flex;
     justify-content: center;
     align-items: center;
 }
.get-in-touch .container {
    max-width: 800px;
    text-align: center;
    background: linear-gradient(to right, #081f38, #12365ee9);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(70, 36, 123, 0.76);
    margin: 60px auto;
}

.get-in-touch h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}

.get-in-touch p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    outline: none;
    box-shadow: 0 0 0 1px transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 8px 2px #007bff;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #0056b3;
    box-shadow: 0 0 15px #0056b3;
}

.btn-submit:focus {
    outline: none;
}

.footer {
    background: #000031;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.footer-contact,
.footer-links {
    flex: 1 1 300px;
    min-width: 280px;
}

.footer h3 {
    font-size: 1.9rem;
    margin-bottom: 25px;
    color: #3f96fa;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
}

/* CONTACT TEXT */
.footer p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ddd;
}

.footer p i {
    margin-right: 12px;
    color: #00d2ff;
}

/* LINKS */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-auto-rows: auto;
    gap: 18px 40px;
    justify-items: start;   
    max-width: 420px;
    text-align: left;       
}

.footer-links ul li {
    margin: 0;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3f96fa;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 25px;
}

.footer-social a {
    color: #00d2ff;
    font-size: 1.8rem;
    margin-right: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #3f96fa;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 1rem;
    color: #0056b3;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        justify-content: center;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 30px;
    }

    .footer-contact,
    .footer-links {
        min-width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        display: flex;
    }
}

.fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease-out, transform 1s ease-out;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0px);
  }
 /* Loader Container */
 #loader {
     position: fixed;
     width: 100%;
     height: 100%;
     background: #ffffff;
     /* Black background */
     color: #030303;
     /* Blue text color */
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 40px;
     /* Large text size */
 }

 /* Optional: Add a fade-out effect */
 #loader.fade-out {
     animation: fadeOut 5s forwards;
     /*Fadeoutanimation*/-webkit-animation: fadeOut 3s forwards;
     -webkit-animation: fadeOut 5s forwards;
}

 /* Fade-out animation */
 @keyframes fadeOut {
     0% {
         color: #111;
     }

     10%{
        color: #0056b3;
     }
     30%{
        color: #0077ff;
     }
     50%{
        color: #030b75;
     }
     100% {
         opacity: 0;
         visibility: hidden;
     }
 }
 .ceo {
     padding: 100px 20px;
     background: radial-gradient(circle at top left, #ffffff, #fbfffc);
     font-family: 'Poppins', sans-serif;
     position: relative;
     z-index: 10;
     overflow: hidden;
 }

 .ceo::before {
     content: '';
     position: absolute;
     width: 400px;
     height: 400px;
     background: linear-gradient(155deg, #00aeff, #f5e8a6);
     border-radius: 50%;
     top: -100px;
     left: -100px;
     filter: blur(120px);
     z-index: -1;
     opacity: 0.4;
 }

 .ceo h1 {
     font-size: 3.5rem;
     text-align: center;
     color: #1a1a1a;
     margin-bottom: 60px;
     letter-spacing: 2px;
     text-transform: uppercase;
     font-weight: 800;
     position: relative;
     animation: slideDown 1s ease-in-out;
 }

 .ceo h1::after {
     content: '';
     position: absolute;
     bottom: -12px;
     left: 50%;
     transform: translateX(-50%);
     height: 4px;
     width: 80px;
     background: #181818;
     border-radius: 10px;
 }

 .sub-container {
     display: flex;
     flex-wrap: wrap;
     gap: 50px;
     align-items: center;
     justify-content: center;
     animation: fadeUp 1.5s ease-in-out;
 }

 .desc {
     flex: 1 1 500px;
     padding: 40px;
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.3);
     backdrop-filter: blur(15px);
     border-radius: 20px;
     color: #2b2b2b;
     font-size: 1.15rem;
     line-height: 1.9;
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.1);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }



 .ceo-image {
     flex: 1 1 300px;
     text-align: center;
 }

 .ceo-image img {
     max-width: 320px;
     width: 100%;
     border-radius: 30px 50px 20px 132px;
     border: 10px solid #000000;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
     transition: transform 0.5s ease, box-shadow 0.5s ease;
 
}

 .ceo-image img:hover {
     transform: rotate(0deg) scale(1.07);
     box-shadow: 0 25px 50px rgba(0, 183, 255, 0.5);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .sub-container {
         flex-direction: column-reverse;
         text-align: center;
     }

     .desc {
         font-size: 1rem;
         padding: 25px;
     }

     .ceo h1 {
         font-size: 2.5rem;
     }
 }

 /* Animations */
 @keyframes slideDown {
     0% {
         opacity: 0;
         transform: translateY(-40px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeUp {
     0% {
         opacity: 0;
         transform: translateY(60px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }
 /* CSS */
 .testimonial-section {
     background: linear-gradient(to right, #f9f9f9, #ffffff);
     padding: 60px 20px;
     text-align: center;
     font-family: 'Segoe UI', sans-serif;
 }

 .section-title {
     font-size: 2.2rem;
     margin-bottom: 40px;
     color: #333;
     position: relative;
 }

 .testimonial {
     background-color: #fff;
     border-radius: 56px 25px 62px 14px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     padding: 30px;
     margin: 20px auto;
     max-width: 700px;
     transition: transform 0.3s ease;
     -webkit-border-radius: 56px 25px 62px 14px;
     -moz-border-radius: 56px 25px 62px 14px;
     -ms-border-radius: 56px 25px 62px 14px;
     -o-border-radius: 56px 25px 62px 14px;
}

 .testimonial:hover {
     transform: translateY(-5px);
     -webkit-transform: translateY(-5px);
     -moz-transform: translateY(-5px);
     -ms-transform: translateY(-5px);
     -o-transform: translateY(-5px);
}

 .quote {
     font-size: 1.1rem;
     color: #444;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .client-name {
     font-weight: bold;
     font-size: 1.2rem;
     color: #222;
 }

 .client-role {
     font-size: 0.95rem;
     color: #777;
 }


 @media (max-width: 600px) {
     .section-title {
         font-size: 1.8rem;
     }

     .quote {
         font-size: 1rem;
     }

     .testimonial {
         padding: 20px;
     }
 }
.btn-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.more-p-btn {
  padding: 20px 40px;
  border-radius: 45px;
  background-color: #000031;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  border: none;
}

.more-p-btn:hover {
  background-color: #1e90ff;
  box-shadow: 0 0 15px 5px #1e90ff;
}


@keyframes pro-btn{
    0%,100%{
    transform: translateY(0px)
    }
    15%{
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
25%{
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}
40% {
    transform: translateY(-25px);
    -webkit-transform: translateY(-25px);
    -moz-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    -o-transform: translateY(-25px);
}
68%{
    transform: translateY(25px);
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
}
90%{
    transform: translateY(-25px);
        -webkit-transform: translateY(-25px);
        -moz-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        -o-transform: translateY(-25px);
}
}