body{
    font-family: "Tenor Sans", sans-serif;
}

nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    margin-top: 30px;
    gap: 20px;
}

nav .main{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    background-color: black;
    width: 60%;
    height: 100px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

nav .main .container1{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / 2;
}

nav .main .container1 a{
    align-self: center;
    color: #fff;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .main .container1 span{
    color: #002aad;
}

nav .main .container1 img{
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

nav .main .container2{
    display: flex;
    align-items: center;   /* vertically centers content */
    justify-content: center; /* centers the ul itself */
    grid-column: 2 / 3;
    color: #fff;
}

nav .main .container2 ul{
    display: flex;
    justify-content: space-evenly; /* even spacing between items */
    align-items: center;           /* vertical alignment */
    width: 100%;                   /* make ul stretch across container2 */
    list-style: none;              /* remove default bullets */
    padding: 0;
    margin: 0;
}

nav .main .container2 li{
    text-align: center;
}

nav .main .container2 li a{
    text-decoration: none;
    color: #e0e6fa;
}

nav .main .container2 li a:hover{
    color: #002aad;
    transition: .8s;
}

nav .main .container3{
    display: flex;
    align-items: center;
    text-align: center;
    grid-column: 3 / 4;
    justify-content: center;
}

nav .main .container3 a{
    color: #fff;
    background-color: #002aad;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
}

.popup button{
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.popup i{
    font-size: 2rem;
    color: black;
    transform: scaleX(-1);
}

.nav-popup{
    display: none;
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 55%;
    background: #fff;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.nav-popup.active {
  display: block;
}


.close-popup {
    position: absolute;
    right: 0;
    color: black;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-popup .logo{
    margin-left: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.nav-popup .logo a{
    text-decoration: none;
    color: black;
    font-size: 23px;
}
.nav-popup .logo a span{
    color: #002aad;
}

.nav-popup .logo img{
    width: 100px;
    height: 100px;
    vertical-align: middle;
}


.popup-menu li {
    list-style: none;
    margin: 1.5rem 0;
}

.popup-content{
    margin-top: 50px;
}

.popup-content a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}

@media screen and (max-width: 1100px) {

    nav .main{
        grid-template-columns: 1fr 1fr;
        width: 90%;
    }
    nav .main .container2{
        display: none;
    }

    nav .main .container3{
    grid-column: 2 / 3;
    }

    .popup-content{
    text-align: center;
    }

    .popup-menu{
    padding: 0;
    } 
    
    .nav-popup .logo a{
    font-size: 20px;
    }

    .nav-popup .logo img{
    width: 80px;
    height: 80px;
    }

    nav .main .container3 a{
    padding: 15px 15px;
    font-size: 12px;
    }

    nav .main .container1 a{
        display: block;
        padding-left: 5px;
    }
}
/* -------------------------------------------------------------Navbar and Popup End--------------------------------------------------------------------*/

header{
    width: 80%;
    text-align: center;
    margin: 100px auto;
    margin-bottom: 50px;
}

header h1{
    font-size: clamp(25px, 48px, 50px);
    font-weight: 300;
    margin-bottom: 4px;
}

header a{
    display: inline-block;
    margin-top: 20px;
    font-size: clamp(15px, 18px, 25px);
    text-decoration: none;
    color: #fff;
    background-color: #002aad;
    padding: 15px 30px;
    border-radius: 5px;
}
/* -------------------------------------------------------------Header End--------------------------------------------------------------------*/
.slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(300px * 12); /* 6 images * 2 sets */
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    min-width: 600px;
    height: 350px;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);

}

.slide:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6 - 60px)); /* Move by 6 images + margins */
    }
}

.title {
    text-align: center;
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* -------------------------------------------------------------Slider End--------------------------------------------------------------------*/

.offer{
    width: 100%;
    background-color: black;
    color: #fff;
    padding: 20px 0px;
    margin: 150px 0;
}

.offer h2{
    text-align: center;
    font-size: clamp(25px, 38px, 40px);
    font-weight: 300;

}

.service-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.service{
  flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
  border-radius: 8px;
  padding: 20px 10px;
  background-color: transparent;
  box-shadow: 0 0px 10px #002aad;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  text-align: center;
  font-size: 15px;
}

.service h3{
    text-shadow:-1px -1px 0 #002aad, 1px -1px 0 #002aad, -1px  1px 0 #002aad, 1px  1px 0 #002aad;
    font-size: 25px;
}

.service a{
    display: inline-block;
    margin-top: 20px;
    font-size: clamp(15px, 18px, 25px);
    text-decoration: none;
    color: #002aad;
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
}
/* -------------------------------------------------------------Services End--------------------------------------------------------------------*/

.process-section{
    width: 100%;
    color: black;
}

.process-section h2{
    text-align: center;
    font-size: clamp(25px, 38px, 40px);
    font-weight: 300;
    margin: 0;
}

.process-section p{
    text-align: center;
}

.process-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 500px));
  gap: 20px;
  margin: 80px 0 50px;
  justify-content: center;
}

.process{ 
  border-radius: 8px;
  padding: 20px 10px;
  background-color: black;
  box-shadow: 0 0px 10px #002aad;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
  color: #fff;
  margin: 0 auto;
}

.process:hover {
  transform: translateY(-25px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.process .img-cont{
    width: 80%;
    height: 280px;
    margin: 0 auto;
}

.process .img-cont img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process p{
    text-align: left;
}

.process h4{
    font-size: clamp(18px, 1rem, 20px);
}
/* -------------------------------------------------------------Process End--------------------------------------------------------------------*/
.features{
    margin-top: 150px;
}
.features h2{
    text-align: center;
    font-size: clamp(25px, 38px, 40px);
    font-weight: 300;
    margin: 0;
}
.features-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  margin-top: 50px;
}

.feature{
  flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
  border: none;
  padding: 20px 10px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  font-size: 15px;
  color: black;
}
.feature p{
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
}

.feature .top{
    width: 100%;
    display: flex;
    height: 30%;
}

.top .img{
    width: 40%;
}

.top .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top .heading h4{
    vertical-align: middle;
    font-size: 18px;
}

/* -------------------------------------------------------------Features End--------------------------------------------------------------------*/

.blog h2{
    font-size: clamp(25px, 38px, 40px);
    font-weight: 300;
    margin-left: 10%;
}

.blog h2 span{
    color: #002aad;
}
.blog-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #002aad;
    border: 2px solid #002aad;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: #002aad;
    color: white;
    transform: translateX(4px);
}

.read-more-btn::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-container {
        padding: 0 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-excerpt {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }
    
    .blog-grid {
        gap: 15px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 16px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation for loading effect */
.blog-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* -------------------------------------------------------------Blog End--------------------------------------------------------------------*/
.whatsapp a{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp a::before {
    content: '';
    position: absolute;
    top: -10px; 
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    z-index: -1;
}   

.whatsapp a:hover::before {
    animation-play-state: paused;
}   

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}   
footer {
    background: linear-gradient(to bottom, #e0e6fa 0%, #ffffff 100%);
    border-top: 2px solid #002aad;
    padding: 40px 20px 20px;
    margin-top: 150px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.brand-name span{
    color: #002aad;
}

.brand-tagline {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #002aad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002aad;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #002aad;
    color: white;
    transform: translateY(-2px);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #002aad;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item strong {
    color: #333;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #002aad;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom a {
    color: #002aad;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-name {
        font-size: 24px;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .contact-info {
        gap: 12px;
    }
}
/* -------------------------------------------------------------PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HEREPRICING PAGE BEGINS HEREPRICING PAGE BEGINS HEREPRICING PAGE BEGINS HEREPRICING PAGE BEGINS HERE --------------------------------------------------------------------*/
.bc__cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.bc__card__item {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 450px;
}

.bc__card__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bc__card__badge {
    width: 50px;
    height: 50px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.bc__card__heading {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
    min-height: 70px;
}

.bc__card__description {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
    flex-grow: 1;
}

.bc__card__cta {
    background: #000000;
    color: #ffffff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
}

.bc__card__cta:hover {
    background: #333333;
    transform: translateX(4px);
}

.bc__card__cta__arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.bc__card__cta:hover .bc__card__cta__arrow {
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .bc__cards__grid {
        gap: 30px;
    }

    .bc__card__item {
        padding: 40px 30px;
        min-height: 450px;
    }

    .bc__card__heading {
        font-size: 24px;
    }
}

@media (max-width: 968px) {
    .bc__services__title,
    .bc__services__subtitle {
        font-size: 36px;
    }

    .bc__cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bc__card__item {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    body {
        padding: 30px 15px;
    }

    .bc__services__heading {
        margin-bottom: 40px;
    }

    .bc__services__title,
    .bc__services__subtitle {
        font-size: 28px;
    }

    .bc__cards__grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .bc__card__item {
        padding: 40px 30px;
        min-height: auto;
    }

    .bc__card__badge {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 25px;
    }

    .bc__card__heading {
        font-size: 22px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .bc__card__description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .bc__card__cta {
        padding: 14px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bc__services__title,
    .bc__services__subtitle {
        font-size: 24px;
    }

    .bc__card__item {
        padding: 35px 25px;
    }

    .bc__card__heading {
        font-size: 20px;
    }
}

.bc__other__services__section {
    margin-top: 150px;
    background: #000000;
    padding: 80px 20px;
}

.bc__other__services__container {
    max-width: 1400px;
    margin: 0 auto;
}

.bc__other__services__header {
    margin-bottom: 60px;
}

.bc__other__services__title {
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.bc__other__cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 10px;
}

.bc__other__card__wrapper {
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    min-height: 280px;
}

.bc__other__card__wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border-color: #002aad;
}

.bc__other__card__icon {
    width: 42px;
    height: 42px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.bc__other__card__title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.bc__other__card__text {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.bc__other__card__button {
    background: #ffffff;
    color: #000000;
    padding: 13px 40px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: auto;
}

.bc__other__card__button:hover {
    background: #f0f0f0;
    transform: translateX(3px);
}

.bc__other__card__arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.bc__other__card__button:hover .bc__other__card__arrow {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .bc__other__services__section {
        padding: 70px 20px;
    }

    .bc__other__cards__grid {
        gap: 25px;
    }

    .bc__other__card__wrapper {
        padding: 35px 30px;
        min-height: 260px;
    }

    .bc__other__card__title {
        font-size: 20px;
    }
}

@media (max-width: 968px) {
    .bc__other__services__section {
        padding: 60px 20px;
    }

    .bc__other__services__title {
        font-size: 32px;
    }

    .bc__other__services__header {
        margin-bottom: 50px;
    }

    .bc__other__cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .bc__other__card__wrapper {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .bc__other__services__section {
        padding: 50px 15px;
    }

    .bc__other__services__title {
        font-size: 28px;
    }

    .bc__other__services__header {
        margin-bottom: 40px;
    }

    .bc__other__cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .bc__other__card__wrapper {
        padding: 35px 28px;
        min-height: auto;
    }

    .bc__other__card__icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .bc__other__card__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .bc__other__card__text {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .bc__other__card__button {
        padding: 12px 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bc__other__services__title {
        font-size: 24px;
    }

    .bc__other__card__wrapper {
        padding: 30px 25px;
    }

    .bc__other__card__title {
        font-size: 18px;
    }

    .bc__other__card__text {
        font-size: 12px;
    }
}

/* -------------------------------------------------------------Catalogue PAGE BEGINS HERE Catalogue PAGE BEGINS HERECatalogue PAGE BEGINS HERECatalogue PAGE BEGINS HERECatalogue PAGE BEGINS HERECatalogue PAGE BEGINS HERE --------------------------------------------------------------------*/

/* Hero Section */
.bc__hero__section {
padding: 80px 20px 60px;
text-align: center;
background: #fafafa;
}

.bc__hero__container {
max-width: 1200px;
margin: 0 auto;
}

.bc__hero__title {
font-size: 48px;
font-weight: 400;
line-height: 1.3;
color: #1a1a1a;
margin-bottom: 20px;
letter-spacing: -0.5px;
}

.bc__hero__subtitle {
font-size: 16px;
color: #666;
line-height: 1.6;
margin-bottom: 40px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

/* Search Bar */
.bc__search__wrapper {
max-width: 600px;
margin: 0 auto;
position: relative;
}

.bc__search__icon {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
color: #999;
font-size: 18px;
pointer-events: none;
}

.bc__search__input {
width: 100%;
padding: 16px 20px 16px 50px;
border: 1px solid #e0e0e0;
border-radius: 8px;
font-size: 15px;
outline: none;
transition: all 0.3s ease;
background: #ffffff;
}

.bc__search__input:focus {
border-color: #002aad;
box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

.bc__search__input::placeholder {
color: #999;
}

/* Templates Section */
.bc__templates__section {
padding: 80px 20px;
max-width: 1400px;
margin: 0 auto;
}

.bc__section__header {
margin-bottom: 40px;
}

.bc__section__title {
font-size: 32px;
font-weight: 500;
color: #1a1a1a;
}

/* Template Grid */
.bc__templates__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-bottom: 80px;
}

.bc__template__card {
display: block;
text-decoration: none;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid #e8e8e8;
background: #ffffff;
}

.bc__template__card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
border-color: #d0d0d0;
}

.bc__template__image {
width: 100%;
aspect-ratio: 3/4;
background: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
position: relative;
}

.bc__template__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.bc__template__card:hover .bc__template__image img {
transform: scale(1.05);
}

.bc__template__placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
display: flex;
align-items: center;
justify-content: center;
color: #999;
font-size: 14px;
}

/* CTA Banner */
.bc__cta__banner {
background: #000000;
padding: 100px 20px;
text-align: center;
position: relative;
overflow: hidden;
margin: 80px auto;
width: 80%;
}

.bc__cta__cloud__topleft {
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 200px;
opacity: 0.6;
}

.bc__cta__cloud__topright {
position: absolute;
top: 0;
right: 0;
width: 200px;
height: 200px;
opacity: 0.6;
}

.bc__cta__cloud__bottomleft {
position: absolute;
bottom: 0;
left: 0;
width: 200px;
height: 200px;
opacity: 0.6;
}

.bc__cta__cloud__bottomright {
position: absolute;
bottom: 0;
right: 0;
width: 200px;
height: 200px;
opacity: 0.6;
}

.bc__cta__content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}

.bc__cta__title {
font-size: 52px;
font-weight: 400;
color: #ffffff;
line-height: 1.3;
margin-bottom: 40px;
letter-spacing: -0.5px;
}

.bc__cta__button {
display: inline-block;
padding: 16px 40px;
background: #ffffff;
color: #000000;
text-decoration: none;
border-radius: 6px;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
}

.bc__cta__button:hover {
background: #f0f0f0;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.bc__cta__button__arrow {
margin-left: 6px;
display: inline-block;
transition: transform 0.3s ease;
}

.bc__cta__button:hover .bc__cta__button__arrow {
transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
.bc__templates__grid {
    gap: 28px;
}
}

@media (max-width: 968px) {
.bc__hero__title {
    font-size: 40px;
}

.bc__templates__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bc__cta__title {
    font-size: 42px;
}

.bc__cta__cloud__topleft,
.bc__cta__cloud__topright,
.bc__cta__cloud__bottomleft,
.bc__cta__cloud__bottomright {
    width: 150px;
    height: 150px;
}
}

@media (max-width: 640px) {
.bc__hero__section {
    padding: 60px 15px 40px;
}

.bc__hero__title {
    font-size: 32px;
}

.bc__hero__subtitle {
    font-size: 15px;
}

.bc__search__input {
    padding: 14px 18px 14px 45px;
    font-size: 14px;
}

.bc__templates__section {
    padding: 60px 15px;
}

.bc__section__title {
    font-size: 26px;
}

.bc__templates__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.bc__cta__banner {
    padding: 80px 20px;
    margin: 60px 0;
}

.bc__cta__title {
    font-size: 32px;
}

.bc__cta__button {
    padding: 14px 32px;
    font-size: 15px;
}

.bc__cta__cloud__topleft,
.bc__cta__cloud__topright,
.bc__cta__cloud__bottomleft,
.bc__cta__cloud__bottomright {
    width: 100px;
    height: 100px;
}
}

@media (max-width: 480px) {
.bc__hero__title {
    font-size: 28px;
}

.bc__section__title {
    font-size: 24px;
}

.bc__cta__title {
    font-size: 28px;
}
}
/* -------------------------------------------------------------PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE PRICING PAGE BEGINS HERE --------------------------------------------------------------------*/
.bc__pricing__hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.bc__pricing__hero__title {
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bc__pricing__hero__subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Sections Container */
.bc__pricing__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.bc__pricing__category {
    margin-bottom: 100px;
}

.bc__pricing__category:last-child {
    margin-bottom: 0;
}

.bc__pricing__category__header {
    text-align: center;
    margin-bottom: 50px;
}

.bc__pricing__category__title {
    font-size: 38px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.bc__pricing__category__description {
    font-size: 16px;
    color: #666;
}

/* Pricing Grid */
.bc__pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bc__pricing__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* Pricing Card */
.bc__pricing__card {
    background: #ffffff;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bc__pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #002aad;
}

.bc__pricing__card--featured {
    border-color: #002aad;
    border-width: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdff 100%);
}

.bc__pricing__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #002aad;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bc__pricing__card__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.bc__pricing__card__name {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bc__pricing__card__price {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.bc__pricing__card__price__currency {
    font-size: 28px;
    font-weight: 600;
    vertical-align: super;
}

.bc__pricing__card__period {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.bc__pricing__card__description {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    line-height: 1.5;
}

/* Features List */
.bc__pricing__features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.bc__pricing__feature {
    padding: 12px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bc__pricing__feature__icon {
    color: #002aad;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bc__pricing__feature--disabled {
    color: #bbb;
    text-decoration: line-through;
}

.bc__pricing__feature--disabled .bc__pricing__feature__icon {
    color: #ddd;
}

/* CTA Button */
.bc__pricing__cta {
    width: 80%;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.bc__pricing__cta:hover {
    background: #333333;
    transform: translateY(-2px);
}

.bc__pricing__card--featured .bc__pricing__cta {
    background: #002aad;
    color: #fff;
}

.bc__pricing__card--featured .bc__pricing__cta:hover {
    background: #002aad;
}

/* FAQ Section */
.bc__faq__section {
    background: #fafafa;
    padding: 80px 20px;
}

.bc__faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.bc__faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.bc__faq__title {
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bc__faq__subtitle {
    font-size: 16px;
    color: #666;
}

.bc__faq__item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bc__faq__item:hover {
    border-color: #002aad;
}

.bc__faq__question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.bc__faq__question:hover {
    color: #002aad;
}

.bc__faq__icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #002aad;
}

.bc__faq__answer {
    padding: 0 30px 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* CTA Banner */
.bc__pricing__cta__banner {
    background: #000000;
    padding: 100px 20px;
    text-align: center;
}

.bc__pricing__cta__title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bc__pricing__cta__subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

.bc__pricing__cta__button {
    display: inline-block;
    padding: 18px 45px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bc__pricing__cta__button:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bc__pricing__grid {
        gap: 28px;
    }
}

@media (max-width: 968px) {
    .bc__pricing__hero {
        padding: 80px 20px 60px;
    }

    .bc__pricing__hero__title {
        font-size: 42px;
    }

    .bc__pricing__container {
        padding: 60px 20px;
    }

    .bc__pricing__category {
        margin-bottom: 80px;
    }

    .bc__pricing__category__title {
        font-size: 32px;
    }

    .bc__pricing__grid,
    .bc__pricing__grid--two {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .bc__faq__title {
        font-size: 36px;
    }

    .bc__pricing__cta__title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .bc__pricing__hero {
        padding: 60px 15px 50px;
    }

    .bc__pricing__hero__title {
        font-size: 32px;
    }

    .bc__pricing__hero__subtitle {
        font-size: 16px;
    }

    .bc__pricing__container {
        padding: 50px 15px;
    }

    .bc__pricing__category__title {
        font-size: 28px;
    }

    .bc__pricing__card {
        padding: 40px 25px;
    }

    .bc__pricing__card__name {
        font-size: 22px;
    }

    .bc__pricing__card__price {
        font-size: 40px;
    }

    .bc__faq__section {
        padding: 60px 15px;
    }

    .bc__faq__title {
        font-size: 28px;
    }

    .bc__faq__question {
        padding: 20px 20px;
        font-size: 16px;
    }

    .bc__faq__answer {
        padding: 0 20px 20px;
    }

    .bc__pricing__cta__banner {
        padding: 80px 20px;
    }

    .bc__pricing__cta__title {
        font-size: 28px;
    }

    .bc__pricing__cta__subtitle {
        font-size: 16px;
    }
}

/* -------------------------------------------------------------Get Web Page-------------------------------------------------------------*/
.gw-header span{
    color: #002aad;
}

.gw-header h1{
        font-size: clamp(25px, 2.5vw, 50px);
}

.gw-header p{
    font-size: clamp(14px, 1.2vw, 18px);
}

#form-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    color: #002455;
}

#form-area h2 {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 200;
    text-align: center;
    margin-bottom: 30px;
}

#form-area form {
    border: 2px solid #60a5fa;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: white;
    min-height: 400px;
}

#form-area label {
    display: block;
    font-size: 16px;
    margin: 20px 0 8px 0;
    color: #1a1a1a;
    font-weight: 500;
}

.steps-container {
    display: flex;
    transition: none;
    width: 300%;
    position: relative;
    align-items: flex-start;
    height: auto;
}

#form-area .step {
    width: calc(100% / 3);
    min-width: calc(100% / 3);
    max-width: calc(100% / 3);
    flex-shrink: 0;
    padding: 40px;
    box-sizing: border-box;
    min-height: auto;
}

#form-area .step h3 {
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.linebar {
    height: 2px;
    background-color: #60a5fa;
    margin-bottom: 30px;
}

#form-area .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 5%;
}

#form-area .form-group input,
#form-area .form-group select,
#form-area .form-group textarea {
    border: 1px solid #cbd5e0;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
}

#form-area .form-group input:focus,
#form-area .form-group select:focus,
#form-area .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

#form-area .form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

/* Custom Radio Button Styles for Step 2 */
.section-title {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    margin: 32px 0 16px 0;
}

.section-title:first-of-type {
    margin-top: 0;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    min-height: 56px;
}

.radio-label:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.radio-option input[type="radio"]:checked + .radio-label {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.radio-option input[type="radio"]:checked + .radio-label::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Traditional Radio Buttons for Step 3 */
.traditional-radio-group {
    margin: 24px 0;
}

.traditional-radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.traditional-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.traditional-radio-option label {
    margin: 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: #4a5568;
}

.dropdown-select {
    grid-column: 1 / -1;
}

#form-area #button-container {
    margin: 50px 0 40px 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

#button-container button {
    border: none;
    border-radius: 8px;
    background-color: #002aad;
    color: #fff;
    padding: 14px 32px;
    min-width: 140px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

#button-container button:hover {
    background-color: #0033cc;
}

#button-container button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#button-container #prevBtn {
    background-color: transparent;
    border: 2px solid #cbd5e0;
    color: #4a5568;
}

#button-container #prevBtn:hover {
    background-color: #f7fafc;
    border-color: #a0aec0;
}

.hidden {
    display: none !important;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    #form-area {
        width: 90%;
        margin-top: 50px;
    }

    #form-area h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #form-area .step {
        padding: 24px;
    }

    #form-area .form-group {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #form-area label {
        font-size: 15px;
        margin: 16px 0 6px 0;
    }

    #form-area .form-group input,
    #form-area .form-group select,
    #form-area .form-group textarea {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    #form-area #button-container {
        margin: 40px 0 30px 0;
        padding: 0 24px;
        flex-direction: row;
        gap: 12px;
    }

    #button-container button {
        width: 48%;
        min-width: auto;
        font-size: 15px;
        padding: 12px 20px;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    #form-area .step h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    #form-area {
        width: 95%;
        margin-top: 30px;
    }

    #form-area h2 {
        font-size: 20px;
    }

    #form-area .step {
        padding: 20px;
    }

    #form-area label {
        font-size: 14px;
    }

    #form-area .form-group input,
    #form-area .form-group select,
    #form-area .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    #form-area #button-container {
        margin: 30px 0 20px 0;
        padding: 0 20px;
    }

    #button-container button {
        height: 45px;
        font-size: 14px;
    }

    #form-area .step h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* -------------------------------------------------------------Get SEO Page-------------------------------------------------------------*/
#seoheader{
    margin: 50px auto;
    width: 95%;
    display: flex;
    min-height: 350px;
    background-color: #002aad;
    padding: 20px 20px;
}

#seoheader .text{
    width: 60%;
    color: #fff;
    text-align: left;
    padding-top: 20px;
    margin: auto auto;
}

#seoheader .text h1{
    font-size: clamp(12px, 0.9vw, 15px);
}

#seoheader .text h2{
    font-size: clamp(60px, 3.3vw, 50px);
    margin: 10px 0; 
}
#seoheader .text p{
    font-size: clamp(12px, 0.9vw, 15px);
}

#seoheader .text a{
    font-size: clamp(10px, 0.7vw, 15px);
    text-decoration: none;
    margin: 0;
}

.inputbox{
    margin: 20px 0;
}

#seoheader .text form{
    width: 90%;
}

#seoheader .text form input{
    border: 1px solid #cbd5e0;
    padding: 12px 16px;
    width: calc(100 / 3);
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
    margin: 10px 0;
}

#seoheader .text form button{
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: #002090;
    color: #fff;
    padding: 14px 32px;
    min-width: 140px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

#seoheader .image{
    width: 40%;
}

#seoheader .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-content{
    width: 80%;
    margin: 0 auto;
}

.timg{
    display: flex;
    margin: 50px 0 200px 0;
}

.timg .image {
    width: 60%;
}

.timg .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.timg .text {
    width: 40%;
    margin-left: 20px;
}

.timg .text h2{
    font-size: clamp(30px, 1.5vw, 34px);
    font-weight: 200;
    margin-bottom: 20px;
    margin-top: 0;
}

.timg .text p{
    font-size: clamp(18px, 1.04vw, 22px);
    line-height: 2.0;
}

.timg .text p a{
    color: #0094F7;
    text-decoration: none;
}

.timg .text p a:hover{
    text-decoration: underline;
}

.seosteps-container{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 50px 0;
}
.step{
    transition: .4s;
}

.step:hover{
    transform: translateY(-20px);
}

.step .image{
    width: 100%;
    height: 250px;
}

.step .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.percscontainer{
    margin: 50px 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2%;
}

.perc{
    transition: .4s;
}

.perc:hover{
    transform: translateY(-24px);
}

@media (max-width: 968px){
    #seoheader{
        flex-direction: column;
        min-height: auto;
    }

    #seoheader .image{
        display: none;
    }

    #seoheader .text{
        width: 100%;
    }

    .timg {
        flex-direction: column;
    }

    .timg .image{
        width: 100%;
    }

    .timg .text {
        width: 100%;
        margin: 10px 0;
    }
}
/* -------------------------------------------------------------Contact Page Begins Here--------------------------------------------------------------------*/
.bc__contact__hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.bc__contact__hero__title {
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.bc__contact__hero__subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.bc__contact__content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.bc__contact__forms__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Form Containers */
.bc__contact__form__container,
.bc__quick__service__container {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 45px 40px;
    transition: all 0.3s ease;
}

.bc__contact__form__container:hover,
.bc__quick__service__container:hover {
    border-color: #002aad;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bc__form__header {
    margin-bottom: 35px;
}

.bc__form__title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.bc__form__description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form Inputs */
.bc__form__group {
    margin-bottom: 25px;
}

.bc__form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.bc__form__input,
.bc__form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.bc__form__input:focus,
.bc__form__textarea:focus {
    border-color: #002aad;
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

.bc__form__textarea {
    min-height: 140px;
    resize: vertical;
}

/* Quick Service Checkboxes */
.bc__service__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.bc__service__option {
    position: relative;
}

.bc__service__checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.bc__service__label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
    text-align: center;
}

.bc__service__label:hover {
    border-color: #002aad;
    background: #f8fdfe;
}

.bc__service__checkbox:checked + .bc__service__label {
    border-color: #002aad;
    background: linear-gradient(135deg, #e0f7fa 0%, #f0fdff 100%);
    color: #00838f;
}

.bc__service__checkmark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #002aad;
    display: none;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

.bc__service__checkbox:checked + .bc__service__label .bc__service__checkmark {
    display: flex;
}

/* Submit Buttons */
.bc__form__submit {
    width: 100%;
    padding: 16px 32px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.bc__form__submit:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Info Section */
.bc__contact__info__section {
    background: #fafafa;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.bc__contact__info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.bc__contact__info__item {
    padding: 20px;
}

.bc__contact__info__label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bc__contact__info__value {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
}

.bc__contact__info__value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bc__contact__info__value a:hover {
    color: #002aad;
}

/* Social Media Section */
.bc__social__section {
    text-align: center;
    padding: 60px 20px;
}

.bc__social__title {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bc__social__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.bc__social__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bc__social__button {
    width: 60px;
    height: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 24px;
}

.bc__social__button:hover {
    border-color: #002aad;
    background: #002aad;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(77, 208, 225, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .bc__contact__hero {
        padding: 80px 20px 60px;
    }

    .bc__contact__hero__title {
        font-size: 42px;
    }

    .bc__contact__content {
        padding: 60px 20px;
    }

    .bc__contact__forms__wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .bc__contact__info__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bc__social__title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .bc__contact__hero {
        padding: 60px 15px 50px;
    }

    .bc__contact__hero__title {
        font-size: 32px;
    }

    .bc__contact__hero__subtitle {
        font-size: 16px;
    }

    .bc__contact__content {
        padding: 50px 15px;
    }

    .bc__contact__form__container,
    .bc__quick__service__container {
        padding: 35px 25px;
    }

    .bc__form__title {
        font-size: 24px;
    }

    .bc__service__options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bc__contact__info__section {
        padding: 40px 25px;
    }

    .bc__social__section {
        padding: 50px 15px;
    }

    .bc__social__title {
        font-size: 24px;
    }

    .bc__social__button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
/* -------------------------------------------------------------Contact Page Ends Here--------------------------------------------------------------------*/
/* -------------------------------------------------------------About Page Begins Here--------------------------------------------------------------------*/
/* Hero Section */
.bc__about__hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.bc__about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(77, 208, 225, 0.1) 0%, transparent 50%);
}

.bc__about__hero__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bc__about__hero__title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.bc__about__hero__subtitle {
    font-size: 22px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.bc__about__story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.bc__about__story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bc__about__story__content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.bc__about__story__text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bc__about__story__highlight {
    background: linear-gradient(135deg, #e0f7fa 0%, #f0fdff 100%);
    border-left: 4px solid #4dd0e1;
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 8px;
}

.bc__about__story__highlight p {
    font-size: 17px;
    color: #00838f;
    font-weight: 500;
    line-height: 1.7;
}

.bc__about__story__image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bc__about__story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc__about__story__placeholder {
    font-size: 18px;
    color: #999;
    text-align: center;
    padding: 40px;
}

.bc__about__story__placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.bc__about__stats {
    background: #fafafa;
    padding: 80px 20px;
}

.bc__about__stats__container {
    max-width: 1200px;
    margin: 0 auto;
}

.bc__about__stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.bc__about__stat__item {
    padding: 30px 20px;
}

.bc__about__stat__number {
    font-size: 52px;
    font-weight: 700;
    color: #4dd0e1;
    margin-bottom: 10px;
    display: block;
}

.bc__about__stat__label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Values Section */
.bc__about__values {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.bc__about__values__header {
    text-align: center;
    margin-bottom: 60px;
}

.bc__about__values__title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.bc__about__values__subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bc__about__values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.bc__about__value__card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 35px;
    transition: all 0.3s ease;
}

.bc__about__value__card:hover {
    border-color: #4dd0e1;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.bc__about__value__icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.bc__about__value__name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bc__about__value__description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* TikTok Section */
.bc__about__tiktok {
    background: #000000;
    padding: 100px 20px;
    text-align: center;
}

.bc__about__tiktok__container {
    max-width: 900px;
    margin: 0 auto;
}

.bc__about__tiktok__header {
    margin-bottom: 50px;
}

.bc__about__tiktok__title {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.bc__about__tiktok__subtitle {
    font-size: 18px;
    color: #cccccc;
}

.bc__about__tiktok__embed {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 780px;
}

.bc__about__tiktok__embed .tiktok-embed {
    margin: 0 auto;
    border-radius: 10px;

}

/* Service Links Section */
.bc__about__services__cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.bc__about__services__header {
    text-align: center;
    margin-bottom: 50px;
}

.bc__about__services__title {
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.bc__about__services__subtitle {
    font-size: 17px;
    color: #666;
}

.bc__about__services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bc__about__service__link {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.bc__about__service__link:hover {
    border-color: #4dd0e1;
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bc__about__service__link__icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.bc__about__service__link__title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.bc__about__service__link__description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.bc__about__final__cta {
    background: linear-gradient(135deg, #4dd0e1 0%, #00acc1 100%);
    padding: 100px 20px;
    text-align: center;
}

.bc__about__final__cta__title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.bc__about__final__cta__subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.95;
}

.bc__about__final__cta__button {
    display: inline-block;
    padding: 18px 50px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bc__about__final__cta__button:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .bc__about__hero {
        padding: 100px 20px 80px;
    }

    .bc__about__hero__title {
        font-size: 42px;
    }

    .bc__about__hero__subtitle {
        font-size: 18px;
    }

    .bc__about__story {
        padding: 80px 20px;
    }

    .bc__about__story__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bc__about__story__content h2 {
        font-size: 36px;
    }

    .bc__about__stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bc__about__values {
        padding: 80px 20px;
    }

    .bc__about__values__title {
        font-size: 36px;
    }

    .bc__about__values__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bc__about__tiktok {
        padding: 80px 20px;
    }

    .bc__about__tiktok__title {
        font-size: 36px;
    }

    .bc__about__services__cta {
        padding: 80px 20px;
    }

    .bc__about__services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bc__about__final__cta {
        padding: 80px 20px;
    }

    .bc__about__final__cta__title {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .bc__about__hero {
        padding: 80px 15px 60px;
    }

    .bc__about__hero__title {
        font-size: 32px;
    }

    .bc__about__hero__subtitle {
        font-size: 16px;
    }

    .bc__about__story {
        padding: 60px 15px;
    }

    .bc__about__story__content h2 {
        font-size: 28px;
    }

    .bc__about__story__text {
        font-size: 16px;
    }

    .bc__about__stats {
        padding: 60px 15px;
    }

    .bc__about__stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bc__about__stat__number {
        font-size: 42px;
    }

    .bc__about__values {
        padding: 60px 15px;
    }

    .bc__about__values__title {
        font-size: 28px;
    }

    .bc__about__value__card {
        padding: 35px 25px;
    }

    .bc__about__tiktok {
        padding: 60px 15px;
    }

    .bc__about__tiktok__title {
        font-size: 28px;
    }

    .bc__about__services__cta {
        padding: 60px 15px;
    }

    .bc__about__services__title {
        font-size: 28px;
    }

    .bc__about__final__cta {
        padding: 60px 15px;
    }

    .bc__about__final__cta__title {
        font-size: 28px;
    }

    .bc__about__final__cta__subtitle {
        font-size: 17px;
    }
}

.bc__maintenance__hero{
    margin: 30px auto;
    width: 95%;
    display: flex;
    justify-content: center;
    background-color: #002aad;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
    padding: 60px 20px;
    color: #fff;
}

.bc__maintenance__hero h1{
    font-size: clamp(48px, 3.3vw, 50px);
    margin: 10px 0;
}

.bc__maintenance__content{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bc__maintenance__hero__quick_call{
    margin: 0 auto;
    width: 30%;
    height: 80%;
    background-color: #fff;
    padding: 20px;
    color: #000000;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    border-radius: 10px;
}

@media (max-width: 968px){
    .bc__maintenance__hero{
        flex-direction: column;
    }

    .bc__maintenance__content{
        text-align: center;
        width: 100%;
    }

    .bc__maintenance__hero__quick_call{
        min-width: 300px;
    }
}
