body {
    font-size: 16px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Times New Roman;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-anim {
    opacity: 0;
    animation: fadeSlideUp 0.9s ease forwards;
}

/* CSS for section section:Amenities */
.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.section-title-container .line {
    flex-grow: 1;
    height: 1.5px;
    background-color: #767676;
    max-width: 170px;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
    color: #0e3d60;
    text-align: center;
    flex-shrink: 0;
}

.section-subtitle {
    font-size: 31px;
    color: #939393;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    line-height: 1.2;
}

.amenities-section .section-subtitle {
    max-width: 957px;
}

.gallery {
    position: relative;
}

.gallery-image {
    width: 100%;
    height: auto;
}

.arrow-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    cursor: pointer;
}

.left-arrow {
    left: 30px;
}

.right-arrow {
    right: 30px;
}

.arrow-container .arrow-bg,
.arrow-container .arrow-icon-left,
.arrow-container .arrow-icon-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.arrow-icon-left {
    transform: rotate(180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .arrow-container {
        width: 35px;
        height: 35px;
    }

    .left-arrow {
        left: 15px;
    }

    .right-arrow {
        right: 15px;
    }
}

/* Location */

/* CSS for section section:Location */
.location-content {
    display: grid;
    grid-template-columns: 666fr 505fr;
    gap: 90px;
    align-items: center;
}
.location-map img {
    border-radius: 29px;
    border: 2px solid #7b7b7b;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
}
.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-item h3 {
    color: #9f2020;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}
.feature-item p {
    color: #2f2f2f;
    font-size: 18px;
    line-height: 1.4;
}
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* CSS for section section:Contact */
.contact-section {
    background-color: var(--bg-light);
}
.contact-form-container {
    max-width: 1260px;
    margin: 0 auto;
    background-color: #f1f1f1;
    border-radius: 34px;
    box-shadow: 2px 4px 7.3px 1px rgba(0, 0, 0, 0.25);
    padding: 60px 80px;
}
.contact-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-info-item img {
    width: 26px;
    height: 26px;
    display: inline;
}
.contact-info-item span {
    font-size: 35px;
    font-weight: 400;
    color: var(--text-dark);
}
.form-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 80px;
}
.contact-form .form-row {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 60px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-size: 22px;
    color: #616161;
    margin-bottom: 20px;
}
.form-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000000;
    background: transparent;
    font-size: 22px;
    padding: 10px 0;
}
.form-group input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}
.submit-btn {
    display: block;
    margin: 0 auto;
    background-color: #111827;
    color: white;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.63px;
    border: none;
    border-radius: 4px;
    padding: 9px 85px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover {
    background-color: #333;
}
.phone-icon {
    height: 40px;
    width: 40px;
    background: #0e3d60;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
}
@media (max-width: 768px) {
    .contact-form-container {
        padding: 40px 20px;
    }
    .contact-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-form .form-row {
        flex-direction: column;
        gap: 40px;
    }
    .form-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.hero-banner {
    /* background-color: #6a4bcc;
    background-image: url("../images/hero-banner.jpg");
    background-size: cover;
    background-position: center;
    position: relative; */
}
.bg-service {
    background-image: url("../images/whatsapp-vs-SMS-blog.png");
    background-size: cover;
    background-position: center;
    position: relative;
}
.card {
    transition: all 0.6s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.card.active {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transform: scale(1.05);
}

.dot {
    width: 10px;
    height: 10px;
    background: #c4c4c4;
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: #000;
    width: 16px;
}
.active-card {
    transform: scale(1.15);
}
.pricing-header ul li {
    font-size: 18px;
}

.whatsapp-api-banner {
    background-image: url("../images/banners/whatsapp-api-banner.jpg");
    background-size: cover;
    background-position: top;
    height: 750px;
    width: 100%;
}
.business-feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 30px;
    background: linear-gradient(180deg, rgb(90 178 117), rgb(245 0 0 / 0%));
    border-radius: 6px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.business-feature-card {
    background: linear-gradient(
        64deg,
        rgb(229 255 237 / 52%),
        rgb(255 255 255 / 0%)
    );
}
.business-feature-card:hover {
    background: linear-gradient(64deg, rgb(0 0 0), rgb(0 0 0));
}
.light-gradient-bg {
    background: linear-gradient(
        64deg,
        rgb(229 255 237 / 52%),
        rgb(255 255 255 / 0%)
    );
}
.about-us-banner {
    background-image: url("../images/about-banner.jpg");
    background-size: cover;
    background-position: top;
    height: 450px;
    width: 100%;
}

.login-card-bg {
    background: linear-gradient(
        64deg,
        rgb(229 255 237 / 52%),
        rgb(255 255 255 / 0%)
    );
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bulk-sms-banner {
    background-image: url("../images/banners/bulk-sms-banner.jpg");
    background-size: cover;
    background-position: top;
    height: 650px;
    width: 100%;
    margin-top: 40px;
}
.bg-black-banner {
    background-image: url("../images/plan-black-bg.jpg");
    background-size: cover;
    background-position: top;
    height: 700px;
    width: 100%;
    margin-top: 40px;
}
.voice-api-banner {
    background-image: url("../images/banners/voice-api.jpg");
    background-size: cover;
    background-position: top;
    height: 700px;
    width: 100%;
    margin-top: 40px;
}
.rcs-messaging-bg {
    background-image: url("../images/banners/rcs-messaging-banner.jpg");
    background-size: cover;
    background-position: top;
    height: 730px;
    width: 100%;
    margin-top: 40px;
}
.otp-api-banner {
    background-image: url("../images/banners/otp-api.jpg");
    background-size: cover;
    background-position: top;
    height: 700px;
    width: 100%;
    margin-top: 40px;
}
.bulk-wa-banner {
    background-image: url("../images/banners/whatsapp-bulk-message.jpg");
    background-size: cover;
    background-position: top;
    height: 700px;
    width: 100%;
    margin-top: 40px;
}
.bg-reseller-banner {
    background-image: url("../images/banners/reseller.jpg");
    background-size: cover;
    background-position: top;
    height: 700px;
    width: 100%;
    margin-top: 40px;
}
.rcs-messaging-bg img {
    border-radius: 230px 10px 260px 260px;
}
#button {
    display: inline-block;
    /* background-color: #FF9800; */
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 44px;
    color: #fff;
}
#button:hover {
    cursor: pointer;
    background-color: #333;
}
#button:active {
    background-color: #555;
}
#button.show {
    opacity: 1;
    visibility: visible;
}

.wa-fixed-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    z-index: 1000;
}
.wa-fixed-btn i {
    font-size: 26px;
    padding: 8px 10px;
}

.comn-cta-section {
    background-image: url("../images/cta-bg.jpg");
    background-size: cover;
    background-position: 0px -280px;
    position: relative;
    /* background-attachment: fixed; */
}
.comn-cta-section::before {
    background-color: #000000d3;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-banner {
    background-image: url("/images/hero-banner-home.jpg");
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 750px;
    position: relative;
}
/* .hero-banner::before {
    content: "";
    position: absolute;
    top: 160px;
    right: 570px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3e3bf;
    box-shadow: 0 14px 28px -13px rgb(0 0 0 / 0.25);
} */
.pricing-sub-heading {
    text-align: left;
    background: #f4fff2;
    width: fit-content;
    color: #005724;
    padding: 5px 10px;
    border-radius: 32px;
    font-size: 26px;
}
div#sms-pricing .mb-16 {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
button.subcat-tab.px-5.py-2\.5.text-lg.font-medium.transition-all.duration-200.whitespace-nowrap.border-transparent.text-gray-600,
button.subcat-tab.px-5.py-2\.5.text-lg.font-medium.transition-all.duration-200.whitespace-nowrap.hover\:text-\[\#049a3d\].hover\:border-gray-300.border-transparent.text-gray-600 {
    border: 1px solid #168a4a;
    border-radius: 10px;
    margin: 0 10px;
    color: #168a4a;
}
button.subcat-tab.px-5.py-2\.5.text-lg.font-medium.transition-all.duration-200.whitespace-nowrap.border-\[\#049a3d\].text-\[\#049a3d\] {
    background: #168a4a;
    color: white;
    border-radius: 10px;
    border: 1px solid #168a4a;
    margin: 0 10px;
}
.whatsapp-api-banner .relative {
    top: 260px;
}
.bulk-wa-banner .relative {
    top: 130px;
}
.bulk-sms-banner .relative {
    top: 200px;
    left: 120px;
}
.voice-api-banner .relative {
    top: 130px;
}
.rcs-messaging-bg .relative {
    top: 150px;
}
.bg-reseller-banner .relative,
.otp-api-banner .relative {
    top: 130px;
}
.pt-section {
    padding-top: 5rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #04692c45;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Hover Effects - BLACK BG */
.feature-card:hover {
    background: #000000; /* Black */
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    border-color: #000000;
}

/* Icon Styles */
.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f930d;
    background: #f3f4f6; /* light grey */
    transition: all 0.35s ease;
}

/* Icon hover animation */
.feature-card:hover .icon-wrap {
    transform: scale(1.15);
    background: #ffffff;
    color: #000000;
}

/* Heading */
.feature-card h4 {
    font-size: 19px;
    font-weight: 600;
    color: #222;
    transition: all 0.3s ease;
}

/* Text becomes white on hover */
.feature-card:hover h4 {
    color: #ffffff;
}

/* Base for all radial steps and slices */
.radial-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    /* Use a slightly adjusted clip-path to ensure clean slices */
    clip-path: polygon(49.5% 49.5%, 100% 0%, 50% 0%);
}

/* Slices (the colored part of the pie) */
.radial-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.95;
}

/* Content Positioning (text boxes) */
.radial-content {
    position: absolute;
    z-index: 20;
}

.radial-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
}

/* Specific Rotations (72 degrees apart) */
.radial-step-1 {
    transform: rotate(-36deg);
}
.radial-step-2 {
    transform: rotate(36deg);
}
.radial-step-3 {
    transform: rotate(108deg);
}
.radial-step-4 {
    transform: rotate(180deg);
}
.radial-step-5 {
    transform: rotate(252deg);
}

/* Content Alignment based on position - ADJUSTED TRANSLATIONS */

/* Content 01 (Top) */
.radial-step-1 .radial-content {
    left: 50%;
    top: 0%;
    transform: translate(-50%, -100%) translateY(-4rem);
    text-align: center;
}
.radial-step-1 .radial-number {
    margin-left: auto;
    margin-right: auto;
}

/* Content 02 (Right Side) */
.radial-step-2 .radial-content {
    left: 100%;
    top: 50%;
    transform: translate(4rem, -50%);
    text-align: left;
}
.radial-step-2 .radial-number {
    margin-left: 0;
    margin-right: auto;
}

/* Content 03 (Bottom Right) */
.radial-step-3 .radial-content {
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0) translateY(4rem);
    text-align: center;
}
.radial-step-3 .radial-number {
    margin-left: auto;
    margin-right: auto;
}

/* Content 04 (Bottom Left) */
.radial-step-4 .radial-content {
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0) translateY(4rem);
    text-align: center;
}
.radial-step-4 .radial-number {
    margin-left: auto;
    margin-right: auto;
}

/* Content 05 (Left Side) */
.radial-step-5 .radial-content {
    right: 100%;
    top: 50%;
    transform: translate(-4rem, -50%);
    text-align: right;
}
.radial-step-5 .radial-number {
    margin-left: auto;
    margin-right: 0;
}

.bg-service-1 {
    background: aliceblue;
}
.bg-service-2 {
    background: #faebd791;
}
.bg-service-3 {
    background: #f8ffff;
}
.bg-service-4 {
    background: #f5f5dc6b;
}
.bg-service-5 {
    background: #ffc4e93d;
}
.bg-service-6 {
    background: #c4fcc036;
}
