* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

/* ------------------------------ */
/* NAVBAR â€” Matches Home/Services */
/* ------------------------------ */

.navbar {
    background: #141414;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

#navbar__logo {
    background-image: linear-gradient(to top, #00318b, #95ffbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.navbar__menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar__item {
    margin: 0 0.5rem;
}

.navbar__links {
    color: #fff;
    padding: 0 1rem;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

.navbar__links:hover {
    color: #ff8177;
}

.navbar__btn .button {
    padding: 10px 22px;
    color: #fff;
    background-image: linear-gradient(to top, #f77062, #fe5196);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.35s;
}

.navbar__btn .button:hover {
    background: #4837ff;
}

/* ------------------------------ */
/* MOBILE NAVBAR */
/* ------------------------------ */

.navbar__toggle {
    display: none;
    cursor: pointer;
}

.navbar__toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px auto;
    transition: all 0.35s ease-in-out;
}

@media screen and (max-width: 960px) {
    .navbar__toggle {
        display: block;
    }

    .navbar__menu {
        position: absolute;
        top: -1000px;
        left: 0;
        width: 100%;
        background: #131313;
        flex-direction: column;
        text-align: center;
        transition: all 0.5s ease;
        opacity: 0;
        z-index: 9;
        padding-bottom: 30px;
    }

    .navbar__menu.active {
        top: 80px;
        opacity: 1;
    }

    .navbar__links {
        width: 100%;
        padding: 1.5rem 0;
    }

    .navbar__btn .button {
        width: 60%;
        margin: 1rem auto;
        display: block;
        text-align: center;
    }

    #mobile-menu {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
    }
}

/* HERO */
.main {
    background: #141414;
    width: 100%;
    height: 90vh;
    background-image: url('Images/pic111.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); 
  z-index: 1;
}



.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 90vh;
    padding: 0 50px;
    max-width: 1300px;
    margin: auto;
    align-items: center;
}

.main__content {
  position: relative;
  z-index: 2;
}

.main__content h1 {
    font-size: 4rem;
    background-image: linear-gradient(to top, #00318b, #95ffbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main__content p {
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.main__btn {
    margin-top: 2rem;
    padding: 12px 36px;
    background-image: linear-gradient(to top, #f77062, #fe5196);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
}

.main__btn a{
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.main__btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #4837ff;
    border-radius: 4px;
    transition: 0.35s;
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
}

#main__img {
    width: 80%;
    height: auto;
}

/* Mobile Hero */
@media screen and (max-width: 760px) {
    .main__container {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 40px;
    }

    .main__content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
    }

    .main__content p {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 400px){
    .main__content h1 {
        font-size: 2rem;
        margin-top: 3vh;
    }

    .main__btn {
        padding: 10px 30px;
    }
}

/* SERVICES SECTION */
.services {
    background-color: #141414;
    padding: 80px 50px;
    text-align: center;
}

.services h1 {
    font-size: 2.5rem;
    background-image: linear-gradient(to right, #00318b, #b12a5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.services__card {
    margin: 1rem;
    border-radius: 10px;
    width: 400px;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 20px;
    transition: 0.3s;
}

.services__card:hover {
    transform: scale(1.07);
}

/* Fix image bug */
.services__card:nth-child(1) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic2.jpg");
}
.services__card:nth-child(2) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic37.jpg");
}
.services__card:nth-child(3) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic34.jpg");
}
.services__card:nth-child(4) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic36.jpg");
}
.services__card:nth-child(5) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic35.jpg");
}
.services__card:nth-child(6) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic4.jpg.jpg");
}
.services__card:nth-child(7) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic38.jpg");
}
.services__card:nth-child(8) {
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6)), url("Images/pic33.jpg");
}

.services__card h2 {
    position: absolute;
    bottom: 120px;
    left: 20px;
}

.services__card p {
    position: absolute;
    bottom: 80px;
    left: 20px;
}

.services__card button {
    position: absolute;
    bottom: 25px;
    left: 20px;
    background: #ff7062;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .services__card {
        width: 300px;
    }
}

/* ABOUT SECTION */
.about {
  padding: 80px 20px;
  background: #141414;
  color: white;
  text-align: center;
}

.about h1 {
  font-size: 3rem;
  background-image: linear-gradient(to right, #00318b, #95ffbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

/* CONTENT LAYOUT */
.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  text-align: left;
}

/* TEXT SIDE */
.about__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;     /* space between paragraphs */
  line-height: 1.75;
  font-size: 1.1rem;
}

.about__text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background-image: linear-gradient(to top, #00318b, #95ffbd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* IMAGE SIDE */
.about__img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about__img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  object-fit: cover;
}

/* MOBILE FIX */
@media screen and (max-width: 900px) {
  .about__container {
    flex-direction: column;
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

  .about__img img {
    max-width: 90%;
  }
}

.contact-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex: 1 1 300px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info i {
  font-size: 20px;
  margin-right: 10px;
  color: #333;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}


.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  font-size: 16px;
  border: none;
  background-color: #1f6f8b;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.contact-form button:hover {
  background-color: #155a6a;
}

.popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4BB543;
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-weight: bold;
}

.popup-content i {
  margin-right: 10px;
}


.form-input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #555;
    margin-bottom: 12px;
}

textarea.form-input {
    height: 120px;
    resize: vertical;
}

.submit-button {
    padding: 12px 28px;
    background: #ff7062;
    color: white;
    border: none;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: transparent;
    border: 1px solid #ff7062;
    color: #ff7062;
}

/* FOOTER */
.footer {
    background: #131313;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer__content p {
    margin: 10px 0;
    font-size: 1rem;
}

.footer__social {
    margin: 15px 0;
}

.footer__social a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
}

.footer__social a:hover {
    color: #ff7062;
}

.footer__policy a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
    font-size: 0.9rem;
}

.footer__policy a:hover {
    color: #ff7062;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 1.2rem;
    z-index: 1000;
    transition: 0.3s;
}

.back-to-top:hover {
    background: #fe5196;
}


/* SUCCESS POPUP */
.popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    animation: popFade 0.6s ease;
}

.popup-content i {
    color: #28a745;
    font-size: 50px;
    margin-bottom: 10px;
}

@keyframes popFade {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* CONTACT SECTION */
.contact-section {
    background: #141414;
    padding: 80px 50px;
    color: white;
    text-align: center;
}

.contact-section h1 {
    font-size: 3rem;
    background-image: linear-gradient(to right, #00318b, #95ffbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

/* CONTACT LAYOUT */
.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
}

/* CONTACT INFO LIST */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info i {
    font-size: 26px;
    margin-right: 15px;
    color: #95ffbd;
}

.contact-info p, 
.contact-info h4 {
    font-size: 1rem;
    line-height: 1.5;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #333;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #1f1f1f;
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* FORM BUTTON */
.contact-form button {
    padding: 14px;
    background: linear-gradient(to top, #f77062, #fe5196);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #4837ff;
}

/* SUCCESS POPUP */
.popup {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    text-align: center;
    animation: popFade 0.6s ease;
}

.popup-content i {
    color: #28a745;
    font-size: 60px;
    margin-bottom: 15px;
}

@keyframes popFade {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* MOBILE FIX */
@media screen and (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        text-align: center;
    }

    .contact-info i {
        margin-right: 10px;
    }
}


/* MOBILE FIX */
@media screen and (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        justify-content: center;
        text-align: center;
    }

    .contact-info i {
        margin-right: 10px;
    }
}


/* FOOTER */
.footer {
    background: #131313;
    color: #fff;
    padding: 60px 20px;
    margin-top: 60px;
}

.footer__content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer__content p {
    margin: 12px 0;
    font-size: 1rem;
    color: #ccc;
}

.footer__social {
    margin: 20px 0;
}

.footer__social a {
    color: #fff;
    margin: 0 12px;
    font-size: 1.4rem;
    transition: 0.3s;
    text-decoration: none;
}

.footer__social a:hover {
    color: #ff7062;
    transform: scale(1.15);
}

.footer__policy {
    margin-top: 22px;
}

.footer__policy a {
    color: #ccc;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer__policy a:hover {
    color: #ff7062;
}

/* Responsive Footer */
@media screen and (max-width: 600px) {
    .footer__social a {
        font-size: 1.3rem;
        margin: 0 10px;
    }

    .footer__policy a {
        font-size: 0.85rem;
    }
}
