/* ----------------------------------------------------------------

	Custom CSS



	Add all your Custom Styled CSS here for New Styles or

	Overwriting Default Theme Styles for Better Handling Updates

-----------------------------------------------------------------*/


    #create-account-btn {
        background-color: #FF27D3;
        color: #FFF!important; /* Setting text color to white */
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding color transition */
    }

    #create-account-btn:hover {
    background-color: #FFA500!important;
    color: #000!important; /* Changing text color to black on hover */
    
    }


    #sign-up-btn {
        background-color: #FF27D3;
        color: #FFF; /* Setting text color to white */
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding color transition */
    }

    #sign-up-btn:hover {
        background-color: #FFA500;
        color: #000; /* Changing text color on hover */
    }

   /* Default styles */
    #home-link, #hosting-link, #services-link, #domains-link, #solutions-link, #sopport-link, #signup-link {
        color: #FF27D3;
		transition: color 0.3s ease; /* Adding transition for color change */
    }

    /* Hover styles */
    #home-link:hover, #hosting-link:hover, #services-link:hover, #domains-link:hover, #solutions-link:hover, #sopport-link:hover, #signup-link:hover {
        color: #FFA500; /* Change text color to orange (#FFA500) on hover */
    }

    #login-btn {
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding transition for color change */
		background-color: #FF27D3!important;  
		color: #FFFFFF!important;
    }

    #login-btn:hover {
        background-color: #FFA500!important; /* Change background color to orange (#FFA500) on hover */
        color: #000!important; /* Change text color to black (#000) on hover for better contrast */
    }


    #signup-btn {
        background-color: #FF27D3!important; /* Setting background color to #FF27D3 */
        transition: background-color 0.3s ease; /* Adding transition for background color */
    }

    #signup-btn:hover {
        background-color: #FFA500!important; /* Change background color to #FFA500 on hover */
    }
    .get-started-btn {
        background-color: #FF27D3; /* Setting background color to pink (#FF27D3) */
        color: #FFF!important; /* Setting text color to white */
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding transition for smooth color change */
    }

    .get-started-btn:hover {
        background-color: #FFA500; /* Change background color to orange (#FFA500) on hover */
        color: #000!important; /* Change text color to black on hover for better contrast */
		
  }
	.purple-background {
		background-color: #FF27D3!important; /* Setting background color to pink (#FF27D3) */
			
	}
	
.section1 {
    margin-top: 50px;
}



/* Adjustments to remove thin outline border */
.purple-button {
    background-color: #7D2BE3;
    color: white;
    font-size: 16px;
    border: none;
    padding: 15px 30px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    outline: none; /* Remove outline */
}

.purple-button:hover {
    background-color: #FF27D3;
}

.button-text {
    display: block;
    text-align: center;
    font-weight: bold;
}

.purple-button .bi {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.nav-item {
    margin-right: 20px; /* Add space between tab buttons */
}

.nav-link {
    border: none; /* Remove default border */
    border-radius: 0; /* Remove any remaining border radius */
    box-shadow: none; /* Remove any box shadow */
}

.nav-link:focus {
    outline: none; /* Remove outline on focus */
}


.hosting-packages {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.package {
    background-color: #fff;
    border-radius: 9px;
    color: white;
    padding: 20px;
    width: 250px;
	border: 1px solid #d3d3d3 ;

    text-decoration: none;
    transition: background-color 0.3s ease;
}

.package:hover {
    border: 2px solid #7D2BE3  ;
	background-color: #fff;
}

.package-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    text-align: center;
}

.package-price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

.package-features p {
    margin: 5px 0;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    text-align: center;
}
.text-color-orange{
	color: #FFA500!important;
}
.text-color-pink{
	color: #FF27D3!important;
}
.text-color-purple{
    color: #7D2BE3 !important;
    font-family: tahoma;
    font-weight: 500;
}
    .page-title {
      background-color: #6f42c1;
;
      color: #FFA500;
      padding: 40px 0; /* Padding for top and bottom */
      text-align: center;
      margin-bottom: 30px; /* Space below the title */
    }
    
    .title-text {
      font-size: 3rem; /* Large font size */
      font-weight: bold;
      letter-spacing: 1px; /* Letter spacing for emphasis */
    }
.custom-color {
    color: #FF27D3 !important;
}
.small-button {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff!important; /* White text color */
    background-color: #FF27D3;
    border: none;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
	margin-top: 5px;
}

.small-button:hover {
    background-color: #FFA500;
    color: #FF27D3!important; /* Ensure text color stays white on hover */
}

.center-content {
    display: flex;
    justify-content: center;


}

.center-button {
    display: inline-block;
    padding: 10px 35px;
    font-size: 16px;
    color: #fff; /* White text color */
    background-color: #FF27D3;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.center-button:hover {
    background-color: #FFA500; /* Orange color on hover */
    color: #fff; /* Ensure text color stays white on hover */
}
.container2 {
        padding-left: 10%;
        padding-right: 10%;
	margin-top: 4rem!important;
    }


    #create-account-btn2 {
        background-color: #7D2BE3;
        color: #FFF!important; /* Setting text color to white */
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding color transition */
    }

    #create-account-btn2:hover {
    background-color: #FFA500!important;
    color: #000!important; /* Changing text color to black on hover */
    
    }

    #create-account-btn3 {
        background-color: #fff;
        color: #7D2BE3 !important; /* Setting text color to white */
        transition: background-color 0.3s ease, color 0.3s ease; /* Adding color transition */
		border-color: #7D2BE3;
		border-width: 2px;
    }

    #create-account-btn3:hover {
    background-color: #7D2BE3!important;
    color: #fff!important; /* Changing text color to black on hover */
    
    }
    .custom-btn {
      border: 2px solid #7D2BE3;
      color: #7D2BE3;
      border-radius: 20px;
      font-family: Tahoma, sans-serif;
      font-size: 18px;
      padding: 8px 28px ;
	margin-right: 20px;
      transition: all 0.3s ease;
    }
    .custom-btn:hover {
      background-color: #7D2BE3;
      color: #ffffff;
    }
    .custom-btn2 {
      border: 2px solid #7D2BE3;
      color: #7D2BE3;
      border-radius: 20px;
      font-family: Tahoma, sans-serif;
      font-size: 18px;
      padding: 8px 28px ;
	margin-right: 0px;
      transition: all 0.3s ease;
    }
    .custom-btn:hover {
      background-color: #7D2BE3;
      color: #ffffff;
    }

.text-success2 {
  --bs-text-opacity: 1;
  color: #7D2BE3!important;
}

 .border2 {
      border: 1px solid #d3d3d3 ;
}

.pricing-price2 {
	
padding: 1rem;
color: #7D2BE3!important; 
font-size: 3rem;
bottom-border-width: 100px;
bottom-border-size: 1px solid rgba(var(--cnvs-contrast-rgb), 0.1);
currency-icon: 1.74rem;
month: 0.99354rem
	
}
.container3 {
	margin-bottom: 3rem;
    }

.container4 {
	margin-top: 3rem;
    }

.container5 {
	margin-bottom: 0rem!important;
	padding-bottom: 0rem!important;
    }
.section2 {
    position: relative;
    width: 100%;
    margin-bottom: 0px!important;
    padding-bottom: 0px!important;
    background-color: var(--cnvs-section-bg);
    overflow: hidden;
}
    .icons-block {
        width: 100%;
        background-color: #f8f9fa!important; /* Light background for contrast */
        padding: 20px 0;
        text-align: center;
    }

    .icons-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .icon {
        margin: 0 15px;
        font-size: 2em; /* Adjust size as needed */
        color: #7D2BE3!important; /* Updated color */
    }

    .icon:hover {
        color: #0056b3!important; /* Optional: Change color on hover */
    }

.bg-orange {
	
	background-color: #FFA500!important;
}

.bg-pink {
	
	background-color: #FF27D3!important;
}
.bg-purple {
	
	background-color: #7D2BE3!important;
}
.bg-grey {
	
	background-color: #8a8a8a !important
}