
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.nav_bar{
    width: 100%;
    position: sticky;
    top: 0;
    background-color: rgb(9, 21, 56);
    color: #fff;
    z-index: 1000;
    border-bottom: 2px solid white;
}
.nav-container p{
    font-family: "DM Serif Display", serif;
    font-size: 25px;
    margin: 0 12px;
}
.trademark{
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    
    vertical-align: super; /* Lifts it up */
    
    margin-left: 2px;      /* Adds a tiny bit of breathing room */
}

.nav-container UL{
    list-style: none;
    display: flex;
    gap: 29px;
    margin-right: 15px;
}
.nav-container UL LI A{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.nav-container UL LI A:hover{
    color: rgb(255, 255, 255);
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-container p {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid white;
        margin-left: 0;
        padding-bottom: 5px;
    }
    .nav-container UL {
        margin-top: 10px;
        display: flex;
        justify-content: space-around;
        gap: 7px;
        width: 100%;
    }
    .nav-container UL LI A {
        font-size: 10px;
    }
}
/* 1. Fullscreen Container */
.slider-wrapper {
    position: relative;
    width: 100%; /* Full Viewport Width */
    height: 100vh; /* Full Viewport Height */
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 2. Slide Setup */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05); /* Modern 'pull-back' effect when hidden */
}

/* 3. The Active Slide */
.slide.active {
    opacity: 1; /* Revealed */
    transform: scale(1); /* Returns to normal size */
    z-index: 1; /* Sits on top */
}

/* 4. Image Styling */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ESSENTIAL: Ensures image fills area without distortion */
    object-position: center;
}

/* 5. Modern Text Content Overlay */
.content {
    position: absolute;
    bottom: 10%;
    left: 8%;
    color: #fff;
    max-width: 500px;
    z-index: 2; /* Sits above the image */
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px); /* Modern blur effect */
    opacity: 0;
    transition: opacity 1.5s ease-out 0.8s, transform 1.5s ease-out 0.8s;
    transform: translateY(20px);
}

.slide.active .content {
    opacity: 1;
    transform: translateY(0);
}

.content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e0e0e0;
}

/* 6. Minimal Navigation Arrows */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none; /* Allows user to click behind the container */
}

.prev-btn, .next-btn {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    pointer-events: auto; /* Re-enables clicking */
    transition: color 0.3s, transform 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* 7. Modern Navigation Dots */
.navigation-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.4s ease, background 0.4s ease;
}

.dot.active {
    width: 30px; /* Modern elongated 'pill' active state */
    border-radius: 5px;
    background: #fff;
}
.about_us {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background-color: rgb(9, 21, 56);
    align-items: center;
}
.about_written {
    width: 50%;
    height: 600px;
    padding: 40px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: white;
    gap: 0px;
}
.about_written h2{
    font-size: 40px;
    font-family: "DM Serif Display", serif;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    
}
.about_written p{
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.8;
    font-family: "Josefin Sans", sans-serif;
}
.about_image{
    margin-top: 30px;
    width: 40%;
    height: auto;
    
    object-fit: contain;
    align-self: center;
}
@media (max-width: 768px) {
    .about_us {
        flex-direction: column;
        align-items: center;
    }
    .about_image img{
        width: 50%;
        margin: 0 auto;
    }
    .about_image{
        width: 100% ;
        height: auto;
        display: flex;
    justify-content: center;
align-items: center;}
    .about_written {
        width: 90%;
        height: auto;
        padding: 20px;
        margin-left: 0;
        gap: 20px;
    }
}
.founder {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background-color: rgb(9, 21, 56);
    padding: 40px 0;
}
.founder h2 {
    font-size: 40px;
    font-family: "DM Serif Display", serif;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
    color: white;
}
.founder-images{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px;

}
.founder-image img {
    width: 300px;
    height: 300px;
    padding: 0;
    border-radius: 50%;
    object-fit: contain;
}
@media (max-width: 768px) {
    .founder-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .founder-image img {
        width: 200px;
        height: auto;
    }
}
.founder1 , .founder2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.founder1 h3, .founder2 h3 {
    font-size: 34px;
    color: white;
    font-family: "DM Serif Display", serif;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}
.founder-about{
    width: auto;
    font-size: larger;
    text-align: left;
    font-family: "Josefin Sans", sans-serif;
    color: white;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(9, 21, 56);
    padding: 40px 0;
}
.services_heading h2 {
    font-size: 40px;
    font-family: "DM Serif Display", serif;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
    color: white;
}
.services_list {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 40px;
    flex-wrap: wrap;
}
.service_item {
    width: 30%;
    margin-top: 15px;
    height: auto;
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.service_item p {
    font-size: 16px;
    line-height: 1.5;
    font-family: "Josefin Sans", sans-serif;
}
.service_item h3 {
    font-size: 28px;
    font-family: "DM Serif Display", serif;
    border-bottom: 2px solid black;
    padding-bottom: 5px;
    text-align: center;
}
@media (max-width: 768px) {
    .services_list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .service_item {
        width: 90%;
    }
}

/* Container and Heading */
.clients-section {
    padding: 50px 20px;
    text-align: center;
    background-color: rgb(9, 21, 56);
}

.clients-section h2 {
    font-size: 40px;
    font-family: "DM Serif Display", serif;
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
        margin-bottom: 40px;
}

/* Grid Logic */
.clients-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 10px auto;
    /* Desktop Mode: 4 in one line */
    grid-template-columns: repeat(4, 1fr);
}

/* Mobile Mode: 2 in one line */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Circular Card Design */
.client-card {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Keeps the container a perfect square */
}

.client-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Makes it circular */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    }

/* Hover Overlay */
.client-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 190, 0.85); /* Pyaasify Blue tint */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    border-radius: 50%;
}

.client-card:hover .client-overlay {
    opacity: 1;
}

.client-card:hover img {
    transform: scale(1.1);
}

.client-name {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-review {
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.2;
}

.contact-container {
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness on mobile */
  gap: 40px;
  width: 100%;
  padding: 20px;
  background-color: rgb(9, 21, 56);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Common wrapper styling */
.contact-form-wrapper, .contact-details-wrapper {
  flex: 1; /* Both sections take equal width on desktop */
  min-width: 300px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-form-wrapper h3, .contact-details-wrapper h3{
    font-size: 28px;
    color: rgb(9, 21, 56);
    margin-bottom: 20px;
    font-family: "DM Serif Display", serif;
}
/* Form Styles */
.pyaasify-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pyaasify-form input, .pyaasify-form textarea {
  padding: 12px;
  border: 2px solid rgb(9, 21, 56);
  border-radius: 10px;
  font-size: 1rem;
}

.submit-btn {
  background-color: rgb(9, 21, 56);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "josefin sans", sans-serif;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #005fa3;
}

/* Details and Map Styles */
.detail-item p {
  margin: 10px 0;
  color: rgb(9, 21, 56);
  font-family: "josefin sans", sans-serif;
}

.social-links {
  margin: 20px 0;
  display: flex;
  gap: 15px;
}

.social-icon {
  text-decoration: none;
  color: #0077be;
  font-weight: 500;
  font-size: 1.5rem;
}

.map-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ddd;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column; /* Stacks sections vertically on small screens */
  }
}
.contact_heading {
    width: 100%;
    padding: 20px;
    background-color: rgb(9, 21, 56);
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact_heading h2{
    
    font-size: 40px;
    font-family: "DM Serif Display", serif;
    text-align: center;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
    color: white;
}
.faq-section {
  background-color: rgb(9, 21, 56);
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: white; /* Bright blue to pop against dark background */
  font-family: "DM Serif Display", serif;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  font-family: "Josefin Sans", sans-serif;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: white;
  line-height: 1.6;
  margin-top: 5px;
  font-family: "Josefin Sans", sans-serif;
}

/* Toggle Class for JavaScript */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content length */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.pyaasify-footer {
  background-color: rgb(9, 21, 56);
  padding: 20px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider line */
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.footer-content p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 5px 0;
}

.brand-name {
  color: white; /* Matches the FAQ title color for consistency */
  font-family: "DM Serif Display", serif;
  font-weight: bold;
}