/*HERO SECTION*/
.cloud-hero-section{
    background : #fff;
    padding : 30px 0;
    overflow : hidden;
}

.cloud-hero-wrapper{
    display :flex;
    justify-content : space-between;
    align-items : center;
    gap : 20px;
    width : 100%;
}

.highlight{
    color : var(--primary);
}

.cloud-hero-content{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-heading-1{
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-heading-2{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.5rem);
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 15px;
}

.cloud-hero-text{
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.cloud-list-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-bottom: 20px;
}

.cloud-list-container{
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cloud-list-item{
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    width: max-content;
    align-items: start;
}

.cloud-list-item::before{
    content: "✓";
    color: #13b763;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.list-content{
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: #b7c3d1;
    text-decoration-style: dashed;
    text-underline-position: under;
    font-size: 16px;
    font-weight: 400;
}

.cloud-hero-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.cloud-hero-image{
    max-width: 90%;
    height: auto;
    border-radius: 8px;
}

.hero-button{
    display: flex ;
    justify-content: center ;
    align-items: center;
    color: #ffffff ;
    background: var(--primary) ;
    border-radius: 10px;
    padding: 17px 14px;
    font-size: 18px;
    border: 1px solid var(--primary);
    width: 35% ;
    cursor: pointer;
    transition: all .3s ease-in-out;
    font-weight: 500 ;
    position: relative;
    overflow: hidden;
}

.hero-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shineMove 2s infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-list-section {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:start;
    margin-bottom: 20px;
}

.hero-list-section .list-section-order {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
}


.hero-list-section .section-order-listing {
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    width: max-content;
    align-items: start;
}

.hero-list-section .section-order-listing::before {
    content: "✓";
    color: #13b763;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%) scale(0.98);
    background: var(--primary);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.tooltip-content::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent var(--primary) transparent transparent;
}

.tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}


.hero-list-price{
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    align-items: baseline;
    gap: 10px;
}

.list-price-text{
    font-size: 18px;
    font-weight: 600;
}

.price-current{
    position: relative;
    display: flex;
    align-items: baseline;
}

.per-rupee{
    font-size: 28px;
    color: var(--text-gray);
    position: absolute;
    top: 0px;
}

.rupee-number{
    color: var(--primary);
    font-weight: 600;
    font-size: clamp(2.01rem, calc(0.5rem + 2.9004vw), 2.75rem);
    margin-left: 18px;
}

.per-month{
    font-weight: 500;
    font-size: 20px;
    color: var(--text-gray);
}

@media(max-width : 1024px){
    .cloud-hero-image{
        max-width : stretch;
    }
}


@media screen and (max-width: 768px) {
    
    .cloud-hero-wrapper{
        flex-direction: column;
    }
    
    .cloud-hero-content{
        width:100%;
    }
    
    .hero-heading-1{
        width:100%;
    }
    
    .cloud-list-section{
        align-items:center;
    }
    
    .cloud-hero-img-container{
        width:100%;
    }
    
    .hero-list-section {
        align-items:center;
    }
    
    .cloud-list-section{
    align-items: center;
   }
    .cloud-heading-container{
        text-align : center;
    }
    .cloud-hero-text{
        text-align : center;
    }
    .cloud-hero-btn{
        justify-items : center
    }
     .tooltip-content {
        top: auto;
        bottom: calc(100% + 10px); 
        left: 50%;
        transform: translateX(-50%) scale(0.98);
    }

    .tooltip-content::before {
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        border-color: var(--primary) transparent transparent transparent;
    }

    .tooltip:hover .tooltip-content {
        transform: translateX(-50%) scale(1);
    }
     .hero-list-section .list-section-order {
    align-items: flex-start;
}
}


@media(max-width:480px){
    
    .hero-button{
        width : 60%;
    }
    .hero-ul-list-items {
    align-items: center;
  }

  .hero-list-price {
    justify-content: center;
  }

}




@media screen and (max-width: 468px) {
    .hero-button-timer{
        flex-direction: column-reverse;
    }

  .hero-button-timer {
    justify-content: center;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .hero-guarantee {
    justify-content: center;
  }
  .tooltip-content {
    top: auto;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.98);
  }

  .tooltip-content::before {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border-color: var(--primary) transparent transparent transparent;
  }

  .tooltip:hover .tooltip-content {
    transform: translateX(-50%) scale(1);
  }
}

/*GLOBAL HERO SECTION CSS END*/



/* REVIEW SECTION CSS */

.review-section-container {
  background-color: #ffffff;
  padding: 25px 0;
  text-align:center;
}

.review-section{
    max-width:1100px;
}

.rating-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.rating-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-icon .icon-cpanel {
  width: 100px;
  height: 50px;
}

.rating-icon .icon-wordpress {
  height: 45px;
}

.rating-plus {
  font-size: 20px;
  margin: 0 5px;
}

.rating-dash {
  font-size: 100%;
  margin: 0 5px;
}

.rating-text-bold {
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  margin-right: 5px;
}

.rating-text {
  font-size: 26px;
  color: var(--text-gray);
  font-weight: 700;
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.review-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px;
  min-width: 220px;
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.review-logo, .review-stars{
    display:flex;
    justify-content:center;
    align-items:center;
}

.review-logo-img {
  height: 30px;
}

.review-star-img {
  height: 35px;
  width: 180px;
}

.review-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.review-text strong {
  color: var(--text-gray);
  font-weight: 600;
}

.review-link {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
  text-underline-position: under;
}

.review-link:hover {
  text-decoration: underline;
  text-decoration-color: #B7C3D1;
  text-decoration-style: dashed;
}


@media (max-width: 768px) {
  .reviews-section {
    flex-wrap: nowrap;                 
    overflow-x: auto;                  
    scroll-snap-type: x mandatory;     
    -webkit-overflow-scrolling: touch; 
    gap: 20px;
    padding: 0 10px;
  }

  .review-box {
    flex: 0 0 50%;
  }

  .reviews-section::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width : 480px) {
    
  .rating-section {
    flex-wrap: wrap !important ;
  }
  
  .review-box {
        flex: 0 0 100%;
    }
  
  .rating-text{
      margin-top: 10px;
  }
}

/* ========== Plans Container CSS ========== */











/*CLOUD HOSTING SECTION*/

.cloud-section{
    background : #ffffff;
    padding : 60px 0;
}

.cloud-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap : 30px;
}

.se-head{
    max-width : 850px;
}

.highlight{
    color : var(--primary);
}

.cloud-image-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.cloud-section-img{
    width : 100%;
    height : auto;
    border-radius : 20px;
}

.cloud-right-wrapper{
    width :50%;
}

.cloud-right-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.cloud-right-para{
    margin-bottom : 20px;
}

.cloud-right-para.mobile{
    display : none;
}

.cloud-right-box{
    list-style : none;
    margin-bottom : 30px;
}

.right-head{
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
}

.cloud-right-head{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap : 10px;
    margin-bottom : 10px;
}

.cloud-right-img{
    width : 25px;
    height : 25px;
}

.cloud-right-box-description{
    padding-left : 36px;
}

.cloud-icon-box-img{
    width : 35px;
    height : 35px;
}

.cloud-icon-box-container{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    padding: 10px 30px;
    gap: 30px;
}

.cloud-icon-box{
    border-radius: 20px;
}

.icon-img-container{
    display: inline-flex;
    justify-content: center;
    padding: 8px;
    align-items: center;
    border-radius: 30px;
    background: var(--primary);
}

.icon-head-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 10px 30px 10px 10px;
    box-shadow: 0 0 12px rgb(169 168 168 / 20%);;
}

.icon-head{
    font-size : 18px;
    font-weight : 600;
    color : var(--text-gray);
}


@media (max-width : 1024px){
    .cloud-right-para.mobile{
    display : block;
   }
   .cloud-right-para{
       display : none;
   }
}

@media (max-width : 768px){
    .cloud-right-para.mobile{
        text-align : center;
    }
    .cloud-container{
        flex-direction : column;
        gap : 0;
    }
    .cloud-image-container{
        width : 100%;
    }
    .cloud-right-wrapper{
        width : 100%;
    }
    .cloud-right-container{
        justify-content: center;
        align-items: center;
    }
}

/*COMPARISON TABLE*/

.comparison-section{
    padding : 3vw 0;
    background : #fff;
}

.section-heading-container{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.se-title-1{
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.se-title-2{
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.highlight-text{
    color : var(--primary);
}

.table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    width: 100%;
    min-width: 900px; 
    
}

.row-label {
    text-align: left;
    padding-left: 30px;
    color: #555;
    width: 30%;
}

.row-label td small{
    color : #000;
}

thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
}

th, td {
    padding: 20px;
    border: 1px solid #edf2f7;
    text-align: center;
}


.category-row td {
    text-align: left;
    font-weight: bold;
    color: #673de6;
    font-size: 18px;
    background: #fff;
    padding-top: 30px;
}

thead{
    background :#cfd5d733;
}

thead .col-highlight{
    background : #673de6;
    color: #fff;
    z-index: 6;
}

.col-highlight {
    background: #fff;
    border-left: 2px solid #673de6;
    border-right: 2px solid #673de6;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    width :25%;
}

thead .row-label {
    z-index: 7;
}

.offer-price, .renew-price{
    font-size : 16px;
    font-weight : 600;
}

.small{
    color : var(--text-gray);
    display: block;
    font-size: 11px;
}

.small.highlight{
    color :  #673de6;
}

thead th.col-highlight {
    border-top: 2px solid #673de6;
}


tbody tr:last-child td.col-highlight {
    border-bottom: 2px solid #673de6;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}


.check { color: #05df60f7; font-weight: bold; }
.cross { color:#515151d4; }

.table-logo {
    max-height: 35px;
}
.table-logo.gray {
    filter: grayscale(100%);
}

.last-data{
    border : 0;
}

.CTA-btn{
    padding: 20px 45px;
    background: #673de6;
    border-radius: 8px;
}

.CTA-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: 2s ease 0s infinite normal none running shineMove;;
    pointer-events: none;
    z-index: 1;
}

.btn-link{
    color : #fff;
}

/* MOBILE SLIDER */

@media (max-width: 992px){

    .table-container{
        overflow: hidden;
        position: relative;
        padding: 0 40px;
    }

    .comparison-table{
        min-width: unset;
        width: max-content;
        transition: transform 0.4s ease;
    }

    .comparison-table th,
    .comparison-table td{
        min-width: 220px;
    }

    .comparison-table .row-label{
        min-width: 260px;
        position: sticky;
        left: 0;
        z-index: 5;
        background: #fff;
    }

    thead .row-label{
        z-index: 10;
    }

    .table-next,
    .table-prev{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #673de6;
        color: #fff;
        border: none;
        cursor: pointer;
        z-index: 20;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .table-next{
        right: 0;
    }

    .table-prev{
        left: 0;
    }
}

/* BELOW 768px */

@media (max-width: 768px){

    .comparison-table th,
    .comparison-table td{
        min-width: 200px;
    }

    .comparison-table .row-label{
        min-width: 220px;
    }
}

/* BELOW 576px */

@media (max-width: 576px){

    .comparison-table th,
    .comparison-table td{
        min-width: 180px;
    }

    .comparison-table .row-label{
        min-width: 200px;
    }
}

/* BELOW 480px */

@media (max-width: 480px){

    .comparison-table th,
    .comparison-table td{
        min-width: 240px;
    }

    .comparison-table .row-label{
        min-width: 170px;
    }
}

/*@media (max-width: 768px) {*/
/*    th, td {*/
/*        padding: 12px;*/
/*        font-size: 13px;*/
/*    }*/

/*    .se-title-2 {*/
/*        font-size: 28px;*/
/*    }*/

/*    .row-label {*/
/*        padding-left: 15px;*/
/*        font-size: 13px;*/
/*    }*/

/*    .table-logo {*/
/*        max-height: 25px;*/
/*    }*/
/*}*/

@media (max-width: 480px) {
    .comparison-table {
        min-width: 750px;
    }

    .se-title-2 {
        font-size: 22px;
    }
}

/*ALL PAGES TAB SECTION CSS */

.pages-tab-section {
  padding: 60px 0;
  background-color:#ffffff;
}

.all-tab-header{
    margin: 0 auto 25px;
    max-width : 850px;
}

.pages-main-header{
    margin-bottom:15px;
}

input[type="radio"] {
  display: none;
}

.allpages-tabs{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: visible; 
}

.card-tab{
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: var(--text-gray);
  border:1px solid var(--border);
  width:150px;
  text-align:center;
}

.card-tab:hover {
  background: #ded3ff;
  border-color: #ded3ff;
}



#tab-hosting:checked ~ .allpages-tabs label[for="tab-hosting"],
#tab-cloud:checked ~ .allpages-tabs label[for="tab-cloud"],
#tab-server:checked ~ .allpages-tabs label[for="tab-server"],
#tab-domain:checked ~ .allpages-tabs label[for="tab-domain"],
#tab-service:checked ~ .allpages-tabs label[for="tab-service"] {
  background: #673de6;
  color: #fff;
  font-weight: 600;
}

.allpages-tab-content {
  display: none;
}

#tab-hosting:checked ~ .hosting-content,
#tab-cloud:checked ~ .cloud-content,
#tab-server:checked ~ .server-content,
#tab-domain:checked ~ .domain-content,
#tab-service:checked ~ .service-content {
  display: block;
}

.tab-content-header{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
}

.all-card-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: auto;
  align-items: stretch;
}

.hosting-card,
.cloud-card,
.server-card,
.domain-card,
.service-card {
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  border: 1px solid var(--border);
  transition: 0.3s ease-in-out;
  display: flex;            
  flex-direction: column; 
  justify-content: space-between;
  height: 420px;
}


.hosting-card:hover,
.cloud-card:hover,
.server-card:hover,
.domain-card:hover,
.service-card:hover{
  border: 1px solid #673de6;
}

.all-card-h3{
  font-size: 20px;
  font-weight: 600;
  color:var(--text-gray);
}

.all-card-para{
  color:var(--text-gray);
  font-size: 16px;
}

.features {
  list-style: none;
}

.features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #673de6;
  font-weight: bold;
}

.all-card-icon {
    display:flex;
    justify-content:center;
    align-items:center;
    height: 60px;
    width: 60px;
    background-color: #673de6;
    border-radius: 8px;
}

.all-card-icon img{
    height:35px;
    width:35px;
}

.price {
  font-weight: bold;
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.price::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #673de6;
  transition: width 0.3s ease; 
}

.hosting-card:hover .price::after,
.cloud-card:hover .price::after,
.server-card:hover .price::after,
.domain-card:hover .price::after,
.service-card:hover .price::after {
  width: 35%;
}

.active-card:hover .price::after {
  width: 35%;
  background-color:#ffffff;
}


.active-card{
    position: relative;
    border: 1px solid #673de6;
    background-color: #673de6;
    overflow: hidden;
}

.active-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineMove 3s infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shineMove {
  100% {
    left: 125%;
  }
}

.active-card .all-card-h3,
.active-card .all-card-para,
.active-card .price,
.active-card .features li {
  color: #ffffff;
}


.active-card .all-card-icon{
    background-color:#ffffff;
}


.active-card .features li::before {
  color: #ffffff;
}

@media (max-width: 1024px) {
  
    .allpages-tabs{
        justify-content:center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .allpages-tabs::-webkit-scrollbar {
       display: none;
    }

    .card-tab {
        flex: 0 0 auto;
        width: 150px;
    }
}

@media (max-width: 768px) {
    
    .allpages-tabs{
        justify-content: space-between;
    }
    
    .card-tab {
        width: 130px;
        font-size: 15px;
        padding: 10px 20px;
    }
  
    .content-header-para{
        text-align:center;
    }
}





/* CTA BOX CSS */

.cta-box-section {
  padding: 30px 0 60px;
  background-color: #ffffff;
}

.cta-box-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.cta-box {
  position: relative;
  background: var(--primary);
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  /*max-width: 1000px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 20%;
  height: 90%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.cta-box::before {
  left: 60px;
  background-image: url('/assets/images/pages/coolify/cta/wordpress-logo.svg');
}

.cta-box::after {
  right: 60px;
  background-image: url('/assets/images/pages/coolify/cta/vps-logo.svg');
}

.contact-cta-box::before,
.contact-cta-box::after{
    height:80%;
    top:35px;
}

.contact-cta-box::before{
    left: 60px;
    background-image: url('/assets/images/pages/coolify/cta/headphone-logo.svg');
}

.contact-cta-box::after{
    right: 60px;
    background-image: url('/assets/images/pages/coolify/cta/colo-server.svg');
}

.cta-box-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%; /* fixed: full width for responsive */
  max-width: 600px;
  text-align: center;
}

.cta-box-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
}

.cta-box-text {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.cta-box-btn {
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--primary);
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem 4rem;
    font-size: 18px;
    border: 1px solid var(--border);
    width: max-content;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.cta-box-btn:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: #ffffff;
}

/* Tablet */
@media (max-width: 768px) {

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-box::before,
  .cta-box::after {
    width: 25%;
    height: 50%;
    top: auto;
    bottom: 10px;
    opacity: 0.2;
  }

  .cta-box::before {
    left: 20px;
  }

  .cta-box::after {
    right: 20px;
  }

  .cta-box-title {
    font-size: 26px;
  }

  .cta-box-text {
    font-size: 16px;
  }

  .cta-box-btn {
    padding: 0 5vw;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cta-box {
    padding: 25px 15px;
  }

  .cta-box-title {
    font-size: 22px;
  }

  .cta-box-btn {
    width: 100%;
    max-width: 280px;
    padding: 0 6vw;
  }
  
  .cta-box::before,
  .cta-box::after {
    width: 25%;
    height: 60%;
    top: auto;
    bottom: 10px;
    opacity: 0.2;
  }

}

/* CTA BOX CSS END */



