:root{
    --primary-color:#c6e8ff;
    --secondary-color: #F7F7F7;
    --std-color:#0A5B9C;
    --std-color2:#eef7fd;
    --std-padding:0px 30px;
}
.contactsec1 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-top:100px;
    background: white;
}

.contactsec1 h1 {
    font-size: 5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(#3896E1,#57BCF3,#1B77C1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slideInLeft 1s ease-in-out forwards;
}

.right-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
    animation: slideInRight 1s ease-in-out forwards;
}

.support-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.customer-support {
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(#3896E1,#57BCF3,#1B77C1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-support span {
    font-size: 1.2rem;
    color:#57BCF3;
}
.customer-support span i{
    transform: rotate(-45deg); 
}
/*animations*/
@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Responsive Styles */
@media (min-width:1600px){
    .contactsec1 {
        gap: 200px;
    }
}
@media (max-width:1400px){
    .contactsec1 {
        gap: 40px;
    }
    .contactsec1 h1 {
        font-size: 3.5rem;
    }
}
@media (max-width:1200px){
    .contactsec1 {
        gap: 40px;
    }
    .contactsec1 h1 {
        font-size:3.5rem;
    }
}
@media (max-width: 1024px) {
    .contactsec1 {
        flex-direction:row;
        align-items:flex-start;
        text-align: center;
    }

    .contactsec1 h1 {
        font-size: 3.5rem;
    }

    .right-sec {
        align-items: center;
        max-width: 100%;
    }

    .support-text {
        font-size: 1.1rem;
    }

    .customer-support {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contactsec1 {
        flex-direction:column;
        align-items:center;
        text-align: center;
    }
    .contactsec1 h1 {
        font-size: 3rem;
        padding-top:40px;
    }

    .support-text {
        font-size: 1rem;
    }

    .customer-support {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contactsec1 {
        padding-top:40px;
    }

    .contactsec1 h1 {
        font-size: 2rem;
    }

    .support-text {
        font-size: 0.95rem;
    }

    .customer-support {
        font-size: 0.85rem;
    }
}
/*contactsec2*/
/* Contact section container */
.contactsec2 {
    text-align: center;
}

/* Heading Styles */
.contact-heading {
    font-size: 3rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    padding-bottom:50px;
}

/* Contact sub-section (Flex layout) */
.contact-sub {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin:auto;
}

.contact-card {
    flex: 1; /* Ensures equal width */
    flex-basis: 0; /* Distributes space evenly */
    min-width: 280px; /* Prevents shrinking too much */
    max-width: 300px; /* Optional: Limit max width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding:10px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px #3896E1;
    border: 1px solid #d9e9ff;
}

/* Support Titles */
.support-title {
    font-size: 30px;
    color:#3896E1;
    font-weight: 600;
    margin:0px !important;
}

/* Support Info (Phone Number & Email) */
.support-info {
    font-size:18px;
    color: black;
    font-family:inter;
    margin:0px !important;
}

/* Call & Email Buttons */
.btn.call {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid var(--std-color);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn.call:hover {
    background: var(--std-color);
    color: white;
    box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.2);
}

/* Purifier Image */
.purifier {
    max-width: 350px;
}

.puri-img {
    max-width: 100%;
    height: auto;
}
/*animation for purifier-img*/
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-100px); /* Moves up */
    }
    100% {
        transform: translateY(0); /* Back to original position */
    }
}
/* Responsive Styles */
@media (min-width:1700px) and (max-width:2600px){
    .contact-sub {
        max-width: 100%;
        display: flex;
        flex-wrap: nowrap; /* Allows wrapping on smaller screens */
        gap: 10px;
    }
    .support-info {
        font-size:20px;
    }
}
@media (max-width:1400px){
    .contact-sub {
        gap: 10px;
        max-width: 100%;
    }
    .contact-card {
        max-width: 300px !important; /* Slightly reduce max width */
    }
    .purifier {
        max-width: 260px;
    }
}
@media (max-width:1200px){
    .contact-sub {
        gap: 10px;
        max-width:100%;
        flex-wrap:nowrap;
    }
    .contact-card {
        max-width: 200px !important; /* Slightly reduce max width */
    }
    .purifier {
        max-width: 240px;
    }
    .support-title {
        font-size: 1.5rem;
        color:#3896E1;
        font-weight: 600;
    }
        /* Support Info (Phone Number & Email) */
        .support-info {
            font-size:18px;
            color: black;
            font-family: poppins;
        }
}
@media (max-width: 1024px) {
    .contact-sub {
        display: flex;
        flex-wrap: nowrap; /* Allows wrapping on smaller screens */
        gap: 10px;
        max-width:100%;
    }
    .contact-card {
        max-width: 400px !important; /* Slightly reduce max width */
    }
    .support-info {
        font-size:16px;
        color: black;
        font-family: poppins;
    }
}
@media (max-width:992px){
    .contact-sub{
        display:flex;
        flex-direction:column;
        padding-top:30px;
        padding-bottom:30px;
    }
    .contact-card {
        max-width:500px;
        margin:0px !important;
        padding:20px !important;
    }
    .support-title {
        font-size: 1rem;
        color:#3896E1;
        font-weight: 600;
    }
    
    /* Support Info (Phone Number & Email) */
    .support-info {
        font-size:14px;
        color: black;
        font-family: poppins;
    }
    .btn.call {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .contactsec2{
        padding:30px;
    }
    .contact-card {
        padding:20px !important;
    }
    .contact-sub {
        flex-direction: column;
    }
    .purifier {
        max-width: 250px;
        animation: none;
    }
    .support-info {
        font-size:14px;
    }
}

@media (max-width: 576px) {
    .contact-heading {
        font-size: 1.5rem;
    }
    .contact-card {
        max-width: 90%;
    }
    .support-info {
        font-size:14px;
    }
}
/*contact sec3*/
.contactsec3 {
    background:linear-gradient(#8AD5FE,#DAF2FF);
    padding-top: 120px;
}

.contactsub3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
}
.contactsub3 .popup{
    display:none;
}

.sec3-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.sec3-left .form-title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.sec3-left .form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid black;
    background: transparent;
    outline: none;
    font-size:1.1rem;
    font-weight: bold;
}
.sec3-left .form-control:focus{
    outline:none;
    box-shadow: none;
}

.send {
    width: 150px;
    padding: 10px;
    font-size: 18px;
    border: 2px solid var(--std-color);
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.5s;
}

.send:hover {
    background:var(--std-color);
    box-shadow: 0px 0px 15px rgba(0, 123, 255, 0.2);
    color: white;
}

.message-title {
    font-size:30px;
    font-weight: bold;
}

.message-subtitle {
    font-size:18px;
    font-weight: 600;
}

.sec3-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

iframe {
    border: none;
    border-radius: 25px;
}
/*responsive */
/* Responsive adjustments */
@media (min-width:1700px) and (max-width:2600px){
    .contactsub3 {
        max-width:100%;
        margin:auto;
    }
    .message-subtitle {
        font-size:20px;
    }
}
@media (max-width: 1400px) {
    .contactsub3 {
        max-width: 1100px;
        gap: 40px;
    }
    .sec3-left .form-title {
        font-size: 16px;
    }
    .message-title {
        font-size:30px;
    }
    iframe {
        border: none;
        width:100%;
        border-radius: 25px;
     }
}

@media (max-width: 1200px) {
    .contactsub3 {
        flex-direction:row;
        text-align: center;
        gap: 30px;
    }
    .sec3-left, .sec3-right {
        flex: 1;
        width: 90%;
    }
    .sec3-left .form-title {
        font-size: 16px;
    }
    .message-title {
        font-size:30px;
    }
    
    iframe {
       border: none;
       width:100%;
       border-radius: 25px;
    }
    .message-subtitle {
        font-size:16px;
        font-weight: 600;
    }
}

@media (max-width: 1024px) {
    .sec3-left .form-control {
        font-size: 1rem;
        padding: 10px;
    }
    .send {
        width: 140px;
        font-size: 15px;
    }
    iframe {
        width: 100%;
        height: 400px;
    }
}
@media (max-width: 992px) {
    .contactsub3 {
        flex-direction: column;
        align-items: center;
    }
    .sec3-left, .sec3-right {
        width: 100%;
    }
    .sec3-left .form-title {
        font-size: 14px;
    }
    .message-title {
        font-size: 1.8rem;
    }
    .form-control {
        font-size: 0.9rem;
        padding: 8px;
    }
    .purifier{
        animation:none;
    }
}

@media (max-width: 768px) {
    .contactsub3{
        padding-top:50px;
    }
    .contactsub3 {
        flex-direction: column;
        align-items: center;
    }
    .sec3-left, .sec3-right {
        width: 100%;
        padding:0px;
    }
    .sec3-left .form-title {
        font-size: 14px;
    }
    .message-title {
        font-size: 1.8rem;
    }
    .form-control {
        font-size: 0.9rem;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .contactsec3 {
        padding: 30px 0;
    }
    .sec3-left.form-title {
        font-size: 13px;
    }
    .message-title {
        font-size: 1.5rem;
    }
    .send {
        width: 130px;
        font-size: 14px;
    }
    iframe {
        height: 300px;
    }
}
/*conatctsec4*/
.contactsec4 {
    background: linear-gradient(to bottom,#8FD7FE,#C1E9FF); /* Smooth gradient */
    padding: 50px 0;
}

.contactsub4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    position: relative;
}

.sec4left,
.sec4right {
    width: 25%;
    height: 100%; /* Make images taller */
    object-fit: cover; /* Ensure they don't get distorted */
    transition: all 1s ease-in-out;
}

.sec4left {
    position: absolute;
    left: 0;
    height: 100%;
}
.sec4left img{
    left:0px;
}

.sec4right {
    position: absolute;
    right: 0;
    height: 100%;
}
.sec4right img{
    padding-right:0px;
}

.bubble-flow {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 50px;
}

.bubbles-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.bubble-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubble-icon {
    width: 120px; /* Increased size */
    height: auto;
}
/* Responsive Design */
@media (min-width:1700px) and (max-width:2600px){
    .contactsub4 {
        max-width:90%;
        margin: auto;
    }
    .sec4left,
.sec4right {
    width: 25%;
    height: 100%; /* Make images taller */
    object-fit: cover; /* Ensure they don't get distorted */
    transition: all 1s ease-in-out;
}
}
@media (max-width: 1400px) {
    .contactsub4 {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .sec4left,
    .sec4right {
        width: 25%;
        height: auto;
    }

    .bubbles-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .bubble-icon {
        width: 90px;
    }
}
@media (max-width: 1200px) {
    .contactsub4 {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .sec4left,
    .sec4right {
        width: 30%;
        height: auto;
    }

    .bubbles-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bubble-icon {
        width: 90px;
    }
}
@media (max-width:1024px) {
    .contactsub4 {
        flex-direction:row;
        align-items: center;
        gap: 40px;
    }

    .sec4left,
    .sec4right {
        width: 30%;
        height: auto;
    }

    .bubbles-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .bubble-icon {
        width: 70px;
    }
}
@media (max-width: 992px) {
    .sec4left,
    .sec4right {
        width: 25%;
    }
    .bubbles-row{
        gap:15px;
    }
    .bubble-icon {
        width: 60px;
        gap:0px;
    }
    .contactsec4{
        padding:0px;
    }
}


@media (max-width: 768px) {
    .sec4left,
    .sec4right {
        width: 30%;
    }
    .bubbles-row{
        gap:15px;
    }
    .bubble-icon {
        width: 50px;
        gap:0px;
    }
    .contactsec4{
        padding:0px;
    }
}

@media (max-width: 576px) {
    .sec4left,
    .sec4right {
        width: 30%;
    }
    .bubbles-row{
        gap:15px;
    }
    .bubble-icon {
        width: 23px;
        gap:0px;
    }
    .contactsec4{
        padding:0px;
    }
}

/*animations for bubbles*/
/*animations of bubbles*/
.bubble-item {
    animation: bounce 2s ease-in-out infinite;
  }
  
  .bubble-item:nth-child(odd) {
    animation-duration: 2s;
  }
  
  .bubble-item:nth-child(even) {
    animation-duration: 2s;
  }
  
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px); /* Moves the bubble upward */
    }
    100% {
      transform: translateY(0); /* Returns to original position */
    }
  }
