
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


.header {
    background: linear-gradient(to right,#1fd1a5, #0aa6c7);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #facbd0;
}

.navbar a {
    color: #fff;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #facbd0;
}


.hero {
    background: linear-gradient(to right, #1fd1a5, #0aa6c7);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
}


.btn {
    display: inline-block;
    background: #b4f5f0;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #facbd0;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #1fd1a5;
    color: #1fd1a5;
    padding: 10px 26px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1fd1a5;
    color: #000;
}


.page-banner {
    background: #f1f5f9;
    text-align: center;
    padding: 60px 0;
}

.page-banner h2 {
    font-size: 32px;
    margin-bottom: 10px;
}


.about,
.about-page {
    padding: 80px 0;
    text-align: center;
}

.about h2,
.about-page h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about p,
.about-page p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}


.services {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #1fd1a5;

  box-shadow: 0 15px 30px rgba(188, 14, 14, 0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}


.service h3 {
    margin-bottom: 10px;
}


.values {
    padding: 80px 0;
    text-align: center;
}

.value-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(168, 15, 15, 0.15) ;
    border: 2px solid #1fd1a5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}


.cta {
  background: linear-gradient(to right, #c5c5c5, #e2dede);
  color: #fff;
  text-align: center;

  padding: 35px 20px;        
  border: 4px solid #facbd0;
  border-radius: 18px;

  max-width: 1100px;
  max-height: 260px;

  margin: 25px auto 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta h2 {
    margin-bottom: 20px;
}


.footer {
    background:linear-gradient(to right,#1fd1a5, #0aa6c7);
    color: #cbd5f5;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
    font-size: 14px;
}


@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .navbar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .navbar a {
    white-space: nowrap;
    margin-left: 16px;
    font-size: 14px;
  }

  
  .navbar::-webkit-scrollbar {
    display: none;
  }
}

    .hero h2 {
        font-size: 26px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
  .cta {
    padding: 28px 16px;
    max-height: none;   
  }

  .cta h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .cta {
    margin: 25px 12px;   
    padding: 30px 14px; 
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cta {
    margin-bottom: 8px;   
  }

  .footer {
    padding-top: 10px;
  }
}


.hero h2 {
    animation: fadeIn 1s ease forwards;
}

.hero p {
    animation: fadeIn 1.3s ease forwards;
}

.hero .btn {
    animation: fadeIn 1.6s ease forwards;
}


.about,
.services,
.values,
.contact,
.about-page {
    animation: fadeIn 1s ease forwards;
}


.service {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.4s;
}

.btn:hover::after {
    left: 100%;
}


.navbar a {
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #38bdf8;
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}


.contact-form input,
.contact-form textarea {
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #1fd1a5;
    box-shadow: 0 0 8px rgba(56,189,248,0.4);
}

.portfolio {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-info {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-info {
    opacity: 1;
}

.contact {
    padding: 80px 0;
    background: #f8fafc;   
    text-align: center;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.contact p {
    color: #555;
    margin-bottom: 30px;
}


.contact-form {
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}


.footer {
    margin-top: 120px;
}



.about-page {
    background: #f8fafc;     
    padding: 80px 0;
    text-align: center;
}

.about-page h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-page p {
    max-width: 750px;
    margin: auto;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}


.values {
    background: #ffffff;    
    padding: 90px 0;
    text-align: center;
}

.values h2 {
    font-size: 30px;
    margin-bottom: 40px;
}


.value-box {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.value {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


.cta {
    margin-top: 0;
}


body.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0aa6c7, #1fd1a5);
}

.thankyou-container {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 14px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thankyou-container h1 {
  font-size: 32px;
  color: #0aa6c7;
  margin-bottom: 15px;
}

.thankyou-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thankyou-container a {
  display: inline-block;
  padding: 12px 30px;
  background: #0aa6c7;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.thankyou-container a:hover {
  background: #0889a5;
}

.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to right, #1fd1a5, #0aa6c7);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

@media (min-width: 769px) {
  .call-now-btn {
    display: none;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 90px;        
  right: 20px;
  background: linear-gradient(to right,#1fd1a5,#0aa6c7);
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}


#backToTop {
  position: fixed;
  bottom: 90px; 
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to right, #1fd1a5, #0aa6c7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-4px);
}


#backToTop {
  display: none;
}


@media (max-width: 768px) {
  #backToTop {
    display: block;
  }
}
