/*About us*/
.banner-section {
    background: url('/assets/images/banners/about-banner.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}
.rtw-difference {
    padding: 40px 20px;
    background: #f8f9fa; /* Light gray background */
}

.rtw-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-in-out;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about-container {
    display: flex;
    align-items: center;
    padding: 50px 0;
}
.about-image {
    width: 50%;
    padding-right: 30px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards;
}
.about-text-container {
    width: 50%;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards;
}
 @keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}


@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 100%;
        padding-right:0;
        padding:10px;
    }

    .about-text {
        width: 100%;
        padding: 20px;
    }
    .about-text-container {
        width:100%;
        padding:15px;
    }
}
@media (max-width: 426px){
    .banner-section {
        height: 150px !important;
    
}
}





/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5722;
}

.stat-box p {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

/* Hover effect */
.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

 /*Mission & Vision*/
.rtw-mission-banner img {
    width: 100%;  /* Makes image responsive */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below the image */
    object-fit: cover; /* Ensures it covers the area without stretching */
} 
.rtw-mission-vision {
    padding: 10px 0;
    text-align: center;
}
.rtw-title {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Main Card Container */
.rtw-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Left Side Image */
.rtw-image-container {
    flex: 1;
    max-width: 50%;
}

.rtw-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Right Side Text */
.rtw-text {
    flex: 1;
    padding: 20px 40px;
    text-align: left;
}


/* Responsive Design */
@media (max-width: 992px) {
    .rtw-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .rtw-image-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .rtw-text {
        padding: 0;
    }
}
@media (max-width: 426px) {
    .rtw-title {
        font-size:30px;
    }
    .underline{
        margin-bottom:25px !important;
    }

}



 /*Team*/
.custom-team-section {
    padding: 50px 10px;
    overflow-x:hidden;
    
}
.team-card {
    width: 100%; /* Ensures uniform width */
    max-width: 280px; /* Prevents oversized cards */
    box-shadow: 0px 0px 10px rgba(93, 173, 226, 0.8); /* Light blue glow effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px rgba(93, 173, 226, 1); /* More intense glow on hover */
}


.team-card img {
    width: 100%;
    height: 300px; /* Fixed Image Height */
    object-fit: cover;
}
.team-card-body {
    padding: 20px;
    text-align: center;
}
.team-member-name {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}
.team-member-role {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 6px;
}
.team-member-location {
    font-size: 0.9rem;
    color: #343a40;
    font-style: italic;
}


/*Blogs*/

.blog-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
  padding: 2rem;
}
.blog-img {
  max-width: 100%;
  display: block;
  height:200px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, calc(20rem + 2vw), 22rem);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(93, 173, 226, 0.6); /* Light blue shadow */
  border-radius: 1em;
  background: linear-gradient(to right, #FFFFFF, #ECE9E6);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(93, 173, 226, 0.8); /* More intense shadow on hover */
}
.blog-card__body {
  padding: 1rem;
  padding-bottom:0 !important;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.blog-tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}
.blog-tag + .blog-tag {
  margin-left: .5em;
}
.blog-tag-tech {
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}
.blog-tag-food {
  background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}
.blog-tag-auto {
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}
.blog-card__body h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
.blog-card__footer {
  display: flex;
  padding: 1rem;
  padding-top:0 !important;
  margin-top: auto;
}
.blog-user {
  display: flex;
  gap: .5rem;
}
.blog-user-img {
  border-radius: 50%;
}
.blog-user__info > small {
  color: #666;
}
.blog-read-more {
  color: #007bff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 0.3rem;
  transition: color 0.3s;
  border:none;
}

@media (max-width: 426px){
    .blog-banner img{
        height:180px !important;
    }
}


/*Blog Details*/
.blog-detail-card {
    padding: 12px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.blog-detail-content-card {
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: 500px;
    overflow-y: auto;
}

.blog-detail-title {
    font-size: 25px;
    font-weight: bold;
    color: #333;
}

.blog-detail-content p {
    font-size: 1rem;
    color: #555;
}

.blog-detail-side-bar .blog-detail-widget {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    
}

.blog-detail-search-form {
    position: relative;
}

.blog-detail-search-form input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid black;
}

.blog-detail-search-form button {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-detail-popular-blogs {
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-detail-popular-blogs ul {
    list-style: none;
    padding: 0;
}

.blog-detail-popular-blogs ul li {
    padding: 8px 0;
}

.blog-detail-popular-blogs ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-detail-popular-blogs ul li a:hover {
    color: #800000;
}

.blog-detail-recent-tags .blog-detail-tags {
    list-style: none;
    padding: 0;
}

.blog-detail-recent-tags .blog-detail-tags li {
    display: inline-block;
    margin-right: 10px;
}

.blog-detail-recent-tags .blog-detail-tags li a {
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;

}

.blog-detail-share-post .blog-detail-social-icons {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
}

.blog-detail-share-post .blog-detail-social-icons li {
    display: inline-block;
}

.blog-detail-share-post .blog-detail-social-icons li a {
    font-size: 1.2rem;
    color: black;
    transition: 0.3s;
}

.blog-detail-share-post .blog-detail-social-icons li a:hover {
    opacity: 0.7;
}
.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 8px;
}

.blog-detail-meta .blog-author {
    font-weight: bold;
    color: #333;
}

.blog-detail-meta .blog-date {
    font-style: italic;
}

.blog-detail-meta .blog-category {
    background: #D3D3D3;
    color: #333;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.85rem;
}
.blog-detail-side-bar .blog-detail-widget,
.blog-detail-recent-tags,
.share-post {
    border: 1px solid #D3D3D3; /* Light grey border */
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background: white; /* Keep background white */
}

::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    border-radius: 10px !important; /* Rounded corners for scrollbar */
}


::-webkit-scrollbar-thumb {
    background: #D3D3D3; /* Scroll thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
}


/*Product and Payment Policy*/
.policy-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.policy-caption {
    font-weight: bold;
    color: #343a40;
    text-align: center;
    margin-bottom: 20px;
}
.policy-list {
    padding-left: 20px;
}
.policy-list li {
    background: #fff;
    padding: 15px;
    border-left: 4px solid #007bff;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    list-style: none;
}
.policy-section-title {
    color: #007bff;
    font-weight: bold;
    margin-top: 20px;
}
.policy-contact {
    background: #e9ecef;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}
.policy-contact a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.policy-contact a:hover {
    text-decoration: underline;
}

/*Terms And Conditions  */
.tandc-container {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    .tandc-caption {
        font-weight: bold;
        color: #343a40;
        text-align: center;
        margin-bottom: 20px;
    }
    .tandc-list {
        padding-left: 20px;
    }
    .tandc-list li {
        background: #fff;
        padding: 15px;
        border-left: 4px solid #007bff;
        margin-bottom: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        list-style:none;
    }
    .tandc-section-title {
        color: #007bff;
        font-weight: bold;
        margin-top: 20px;
    }
    .tandc-contact {
        background: #e9ecef;
        padding: 20px;
        border-radius: 5px;
        text-align: center;
        margin-top: 20px;
    }
    .tandc-contact a {
        color: #007bff;
        font-weight: bold;
        text-decoration: none;
    }
    .tandc-contact a:hover {
        text-decoration: underline;
    }
        
/*Testimonial*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}
.testimonial-img {
  border: 5px solid black; /* You can adjust the color and thickness of the border */
  padding: 5px; /* Optional: adds some space between the image and the border */
}

/* Compact Contact Page Styling */

.contact-form, .contact-info {
    max-width: 500px;
    width: 100%;
    background: linear-gradient(135deg, #1537a7 30%, #1ee80e 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.contact-form:hover, .contact-info:hover {
    transform: translateY(-3px);
}

.contact-info {
    text-align: center;
    color: white;
    padding: 25px;
}

.contact-info h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 14px;
    margin: 6px 0;
    line-height: 1.4;
}

.contact-info a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #ffd700;
}

.contact-form h4 {
    font-size: 22px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1ee80e;
    box-shadow: 0 0 5px rgba(30, 232, 14, 0.3);
    outline: none;
}

.contact-form button {
    background: #ffd700;
    border: none;
    color: #1537a7;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #ffcc00;
    color: #0d2450;
}

.recaptcha-container {
    transform: scale(0.85); /* shrink reCAPTCHA */
    transform-origin: left top;
}

@media (max-width: 768px) {
    .contact-form, .contact-info {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 426px) {
    .contact-form {
        margin-left: 5px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info h5 {
        font-size: 18px;
    }

    .contact-form h4 {
        font-size: 20px;
    }
}


/*contact css end*/

/*IT Products Head start*/

/*.heroSwiper {*/
/*    width: 100%;*/
/*    height: 100vh; 
/*    position: relative;*/
/*}*/

/*.swiper-wrapper {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.hero-swiper-slide {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-align: left;*/
/*    position: relative;*/
/*    height: 100vh;*/
/*    padding: 60px;*/
/*    color: white;*/
/*    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));*/
/*}*/

/*.content-ops {*/
/*    max-width: 50%;*/
/*    z-index: 2;*/
/*}*/

/*.content-ops h1 {*/
/*    font-size: 42px;*/
/*    font-weight: bold;*/
/*    margin-bottom: 15px;*/
/*    animation: fadeInDown 1s ease-in-out;*/
/*}*/

/*.content-ops p {*/
/*    font-size: 18px;*/
/*    margin-bottom: 20px;*/
/*    line-height: 1.6;*/
/*    opacity: 0.9;*/
/*}*/

/*.cta a {*/
/*    display: inline-block;*/
/*    padding: 12px 25px;*/
/*    background: #ffcc00;*/
/*    color: #000;*/
/*    font-weight: bold;*/
/*    font-size: 18px;*/
/*    border-radius: 5px;*/
/*    transition: 0.3s ease;*/
/*    text-decoration: none;*/
/*}*/

/*.cta a:hover {*/
/*    background: #ffa500;*/
/*    transform: translateY(-3px);*/
/*}*/

/*.ratings {*/
/*    margin-top: 20px;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    opacity: 0.9;*/
/*}*/

/*.image-ops {*/
/*    max-width: 50%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.image-ops img {*/
/*    max-width: 100%;*/
/*    border-radius: 10px;*/
/*    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.image-ops img:hover {*/
/*    transform: scale(1.05);*/
/*}*/

/* Mobile Responsive */
/*@media (max-width: 768px) {*/
/*    .hero-swiper-slide {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*        padding: 40px;*/
/*    }*/

/*    .content-ops {*/
/*        max-width: 100%;*/
/*    }*/

/*    .image-ops {*/
/*        max-width: 100%;*/
/*        margin-top: 20px;*/
/*    }*/
/*}*/

/*@media (max-width: 426px) {*/
/*    .hero-swiper-slide {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*      height:70vh !important;*/
/*    }*/

/*    .content-ops {*/
/*        max-width: 100%;*/
/*    }*/

/*    .image-ops {*/
/*        max-width: 100%;*/
/*        margin-top: 5px;*/
       
/*    }*/
/*    .heroSwiper{*/
/*        height:450px;*/
/*    }*/
   
    
/*}*/
/*@media (max-width: 376px) {*/
/*    .hero-swiper-slide {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*        height:62vh !important;*/
/*    }*/

/*    .content-ops {*/
/*        max-width: 100%;*/
/*    }*/

/*    .image-ops {*/
/*        max-width: 100%;*/
/*        margin-top: 5px;*/
       
/*    }*/
/*    .heroSwiper{*/
/*        height:400px;*/
/*    }*/
   
    
/*}*/
/*@media (max-width: 376px) {*/
/*    .hero-swiper-slide {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*        height:55vh !important;*/
/*    }*/

/*    .content-ops {*/
/*        max-width: 100%;*/
/*    }*/

/*    .image-ops {*/
/*        max-width: 100%;*/
/*        margin-top: 5px;*/
       
/*    }*/
/*    .heroSwiper{*/
/*        height:360px;*/
/*    }*/
/*    .content-ops h1{*/
/*        font-size:20px !important;*/
        
/*    }*/
/*    .content-ops p{*/
/*        font-size:15px !important;*/
        
/*    }*/
    
/*}*/

/* Animations */
/*@keyframes fadeInDown {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/


/*IT Products Head end*/



/*Domain and Hosting  */
   
.domain-search input{
    height:50px;
}   
.result-container {
    border: 1px solid #dee2e6;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.custom-card  {
    flex-grow: 1; 
}
.custom-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}
.custom-card:hover {
    transform: translateY(-5px);
}
.pricing-header {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}
.highlight-text {
    color: #dc3545;
    font-weight: bold;
}
.domain-card {
    background-color: #f8f9fa;
}
.hosting-card {
    background-color: #e3f2fd;
}
.ssl-email-card {
    background-color: #f8f9fa;
}
.list-group-item {
    border: none;
    background-color: transparent;
    padding: 8px 0;
}
.container {
    max-width: 1100px;
}

@media (max-width: 426px) {
    .domain-card {
        height: 500px;
    }
}

/*new domain css*/
.hero {
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
    color: #fff; 
    padding-top: 5rem; 
}

.hero .heading {
    background: #0a044a; 
    padding: 2rem;
    border-radius: 8px;
    color:black;
}

.hero .input-group {
    max-width: 600px;
    margin: 0 auto;
}


 /*why choose us */
 
.why-choose-section {
    background-color: #f8f9fa;
}

.why-choose-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.highlight {
    color: #dc3545;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

/*Signup page*/

.fancy-heading {
    font-family: "Playfair Display", serif; /* A fancy font */
    font-style: italic;
    font-size: 24px; 
    color: #2c3e50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); 
}
