* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    /* Primary Colors */
    --primary-color: #C01190;
    --primary-dark: #8C0D69;
    --primary-light: #FF99D6;

    /* Secondary Colors */
    --secondary-color: #9010C0;
    --secondary-dark: #6B0C8C;

    /* Neutral Colors */
    --neutral-dark: #333333;
    --neutral-medium: #666666;
    --neutral-light: #b3b3b3;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #FDF8FA;

    /* Accent Colors */
    --success-color: #10C090;
    --whatsapp-color: #25d366;
    --whatsapp-dark: #128C7E;
}

body {
    font-family: "poppins";
    line-height: 1.6;
    background: var(--bg-secondary);
    color: var(--neutral-dark);
    background-color: hsl(200, 100%, 96%);
}

/* Add these styles for the contact banner */
.contact-banner {
    background-color: var(--primary-dark);
    background-color: #f507cd;
    color: var(--bg-primary);
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
    position: relative;
    z-index: 1000;
    /* Ensure it appears above other content */
}

.contact-link {
    color: #ffffff;
    /* White text color for links */
    text-decoration: none;
    /* Remove underline from links */
    margin: 0 10px;
    /* Spacing between links */
}

.contact-link:hover {
    text-decoration: underline;
    /* Underline on hover */
}

.separator {
    color: #ffffff;
    /* White color for separator */
    margin: 0 10px;
    /* Spacing around separator */
}

header {
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;  
    /* border: 1px solid red; */
}

header .content {
    width: 80%;
    /* margin-left: 10%; */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 25%;
    /* font-size: 24px; */
    /* font-weight: bold; */
    color: var(--primary-color);
    display: flex;
    height: 100%;
    /* border: 1px solid red; */
    align-items: center;
}

header .content .logo img {
    height: 50px;
}

nav {
    width: 35%;
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid red; */
}

nav a {
    text-decoration: none;
    color: var(--neutral-medium);
    font-weight: normal;
    font-size: 12px;
    transition: .3s ease-in-out;
}

nav a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.auth-buttons {
    width: 15%;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* border: 1px solid red; */
}

.auth-buttons a {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    font-weight: normal;
}

.auth-buttons a.login {
    background: transparent;
    color: var(--primary-color);
}

.auth-buttons a.register {
    background: var(--primary-color);
    background-color: #f507cd;
    color: var(--bg-primary);
}

.main {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/back2.png);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    height: 90vh;
    
}

.custom-shape-divider-bottom-1734227123 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1734227123 svg {
    position: relative;
    display: block;
    width: calc(127% + 1.3px);
    height: 124px;
}

.custom-shape-divider-bottom-1734227123 .shape-fill {
    fill: #F8F9FD;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 88vh;
    /* margin-left: 10%; */
    margin-top: 10px;
    margin-bottom: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #00000060;
}

.hero-content {
    /* border: 1px solid red; */
    height: 100%;
    width: 100%;
    padding: 1% 10%;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 50px;
    font-family: "poppins";
    color: #ff9900;
    /* text-shadow: 1px 0 0 #666; */
}

.hero-content h1 span {
    color: #ff9900;
}

.hero-content p {
    margin: 10px 0;
    line-height: 36px;
    font-style: italic;
    color: #eee;
    font-size: 30px;
}
.hero-content p.get_c{
    font-size: 25px;
    font-family: "Birthstone", serif;
}
.buttons button {
    width: 200px;
    padding: 5px 10px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* border: 2px solid #C01190; */
}
.buttons button span{
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buttons .start-now {
    /* background: #0077ff; */
    color: #ffffff;
    /* stroke: 1px solid #0077ff; */
    background-color: #f507cd;
    font-weight: normal;
}

.buttons .watch-video {
    background: transparent;
    color: #ff9900;
    font-size: 12px;
    font-weight: normal;
    border: 1px solid #ff9900;
}

.image-content {
    position: relative;
    width: 45%;
    height: 100%;
}

.image-content img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.badge {
    position: absolute;
    background: #0077ff;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.badge.high-speed {
    top: 10px;
    left: 10px;
}

.badge.seamless {
    bottom: 10px;
    right: 10px;
}




.features {
    background: #f8f9fd;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    background: none;
    position: relative;
}
.custom-shape-divider-top-1734683256 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1734683256 svg {
    position: relative;
    display: block;
    width: calc(141% + 1.3px);
    height: 106px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1734683256 .shape-fill {
    fill: #EBF8FF;
}
.features-content {
    width: 80%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row-reverse ;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.image-section {
    display: flex;
    width: 38%;
    height: 70vh;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
}

.text-section {
    width: 60%;
    margin-left: 2%;
}

.text-section h2 {
    font-size: 28px;
    color: #00274d;
    margin-bottom: 15px;
}

.text-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    /* font-size: 12px; */
}

.feature_tab {
    display: flex;
    flex-direction: column;
    /* border: 1px solid red; */
    margin-bottom: 20px;
}

.feature_tab p.title {
    font-size: 16px;
    color: #00274d;
}

.text-section ul {
    /* list-style: none; */
    padding: 0;
    margin-left: 20px;
}

.text-section ul li {
    font-size: 12px;
    color: #666666;
}

.counter {
    background-color: #f8f9fd;
    width: 100%;
    height: auto;
    /* margin-bottom: 20px; */
}

.counter-content {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 20px;
}

.counter-item {
    text-align: center;
    padding: 15px;
    width: 23%;
    border-radius: 0px 60px;
    background-color: #ffff;
    background: linear-gradient(45deg, #000000, #C01190);
}

.counter-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffffff;
}

.counter-item .count {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.details_c p {
    color: #fff;
}

hr {
    width: 80%;
    margin-left: 10%;
    height: 4px;
    border-radius: 10px;
    /* margin-top: 20px; */
    border: none;
    background-color: #fffFFF;
}

.pricing-section {
    text-align: center;
    background: #f8f9fd;
    background: #ffffff;
    padding-top: 150px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    position: relative;
    /* border: 1px solid red; */
}

.custom-shape-divider-top-1732770746 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1732770746 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 107px;
}

.custom-shape-divider-top-1732770746 .shape-fill {
    fill: #F8F9FD;
}

.pricing_section_content {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* border: 1px solid red; */

}

.pricing-section h2 {
    font-size: 32px;
    color: #00274d;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pricing-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.tab-buttons {
    width: 30%;
    margin-left: 40%;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px 50px;
}

.tab-buttons button {
    padding: 8px 20px;
    font-size: 14px;
    border: none;
    background: #e0f0ff;
    color: #003366;
    border-radius: 10px 50px;
    cursor: pointer;
}

.tab-buttons button.active {
    background: #007bff;
    color: #fff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: start;
}

.pricing-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 24px;
    color: #C01190;
    margin-bottom: 15px;
}

.pricing-card .price sub {
    font-size: 12px;
}

.pricing-card ul {
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border-top: 2px solid #0078ff;
}

.pricing-card ul li {
    font-size: 14px;
    color: #555;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: start;
}

.pricing-card button {
    padding: 10px 25px;
    font-size: 14px;
    color: #fff;
    background: #C01190;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.pricing-card.popular {
    border: 2px solid #C01190;
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #C01190;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.custom-shape-divider-top-1732770831 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1732770831 svg {
    position: relative;
    display: block;
    width: calc(190% + 1.3px);
    height: 112px;
}

.custom-shape-divider-top-1732770831 .shape-fill {
    fill: #ebf8ff;
}

.why-us {
    padding: 4rem 2rem;
    /* background-color: #f5f5f5; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    margin-top: 2rem;
    width: 80%;
}
.why-us-items .row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-us-items .middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-us-item {
    /* background-color: #fff; */
    padding: 2rem;
    border-bottom: 2px solid #C0119020;
    border-right: 2px solid #C0119020;
    border-radius: 8px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}
.why-us-items .middle  .why-us-item {
    height: 100%;
    padding: 1rem ;
    border: none;
}
.why-us-item img{
    width: 100%;
    border-radius: 10px;
}
.why-us-item i {
    font-size: 2.5rem;
    color: #C01190;
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    color: #666;
    font-size: 12px;
}


.agents {
    text-align: center;
    width: 80%;
    margin-left: 10%;
    background: linear-gradient(45deg ,#00000020 20%, #C0119060 50%, #00000020 10%);
    border-radius: 10px;
    margin-bottom: 30vh;
    height: 40vh;
}

.agents h2 {
    font-size: 24px;
    color: #555;
}

.agents h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.agents p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-agents {
    display: flex;
    width: 80%;
    margin-left: 10%;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #fff;
    background: linear-gradient(45deg ,#000000 20%, #C01190 80%   );
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 50px;
    margin-bottom: 15px;
}

.card i {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    color: #0078ff;
}

.card p {
    font-size: 12px;
    color: #777;
}

/* Add these styles for the Scroll to Top button */
.scroll-to-top {
    position: fixed;
    bottom: 120px;
    right: 44px;
    background-color: #C01190;
    /* Dark background color */
    color: #ffffff;
    /* White text color */
    padding: 15px 20px;
    border-radius: 20%;
    /* Circular button */
    text-align: center;
    font-size: 18px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    /* Remove underline */
    display: none;
    /* Hidden by default */
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
    /* Ensure it appears above other content */
}

.scroll-to-top:hover {
    background-color: #128C7E;
    /* Change color on hover */
    transform: scale(1.1);
    /* Slightly enlarge on hover */
}




.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: hsl(200, 100%, 96%);
    padding: 40px;
}
.text_f_testimonials{
    width: 80%;
    margin-left: 10%;
    /* text-align: center; */
}
.text_f_testimonials p{
    font-size: 60px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    text-align: center;

}
.text_f_testimonials hr{
    width: 40%;
    margin-left: 30%;
    height: 5px;
    background: linear-gradient(45deg ,#000000 50%,#C01190 50%);
}
.testimonials .flex{
    gap: 20px;  
    display: flex;
    /* align-items: flex-start; */
    justify-content: center;
}
.testimonial {
    background-color: #ffffff;
    border-radius: 0px 0px 25px 25px ;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    text-align: center;
}

.image-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background: linear-gradient(45deg , #00000030 ,#C0119030);
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
}

.image-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

blockquote p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: start;
}
.quotes{
    font-size: 20px;
    margin: 0;
}
blockquote strong {
    font-weight: bold;
}

.author {
    display: flex;
    align-items: center;
    justify-content: start; 
    gap: 10px;
}

.author img {
    width: 50px;
    border-radius: 50%;
    height: 50px;
}

.author .name {
    text-align: start;
    font-weight: bold;
    display: block;
}

.author .title {
    font-size: 14px;
    color: #666;
    text-align: start;
    display: block;
}





.locations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-title {
    text-align: center;
    color: #00172d;
    font-size: 2.5em;
    margin-bottom: 40px;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.1); */
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.location-card {
    background: white;
    border-radius: 5px;
    padding: 10px;
    padding-left: 20px;
    /* text-align: center; */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    position: relative;
    overflow: hidden;
    border: none;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
}

.location-card legend {
    width: 50px;
    font-size: 12px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border:1px solid#4CAF50; */
    background: linear-gradient(180deg, #4CAF50 100%, #ffffff);
    color: #ffffff;
    border-radius: 5px;

}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background: linear-gradient(90deg, #ff9900, #ff5500); */
}

.location-name {
    color: #00172d;
    font-size: 1.2em;
    margin: 15px 0;
    font-weight: bold;
}

.location-status {
    position: absolute;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 2px;
    background-color: #4CAF5020;
    border: 2px solid #4CAF50;
    color: white;
    color: #4CAF50;
    font-size: 0.9em;
    margin-top: 10px;
}

@media (max-width: 950px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #C01190;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #C01190;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #C01190;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b3b3b3;
}

.contact-info li i {
    color: #C01190;
    width: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 0;
    color: #b3b3b3;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #007bff;
}



/* Modal Styles */
#planModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    /* border-radius: 10px; */
    width: 40%;
    /* max-width: 500px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
    /* text-align: center; */
    margin-bottom: 20px;
    color: #666;
    color: #8C0D69;
    border-bottom: 1px solid #ff9900;
}
.modal-content h2 .plan_name{
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    border: 1px solid #8C0D6930;
    padding: 5px 20px;
    background-color: #8C0D6920;
    border-radius: 10px;
    margin-bottom: 10px;
}
.modal-form {
    display: flex;
    flex-direction: column;
}

.modal-form input {
    margin-bottom: 15px;
    padding: 15px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal-form button {
    background-color: #8C0D69;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-form button:hover {
    background-color: #218838;
}

.close-modal {
    color: #fff;
    float: right;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    background-color: red;
    width: 40px;
    height: 40px;
}

.close-modal:hover {
    color: black;
}




/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Add these styles */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Add these styles for the map section */
.map-section {
    text-align: center;
    /* Center the content */
    margin: 40px 0;
    /* Spacing above and below the map */
}

.map-section h2 {
    font-size: 24px;
    /* Heading size */
    margin-bottom: 20px;
    /* Space below the heading */
}

/* For mobile devices - adjust position and size */

@media (max-width: 950px) {
    header {
        width: 100%;
        height: 8vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        /* border: 1px solid red; */
    }

    header .content {
        width: 100%;
        height: 100%;
    }
    .logo {
        width: 100%;
    }
    .logo h1{
        font-size: 18px;
    }

    header .content .logo img {
        height: 50px;
    }

    nav {
        display: none;
    }

    .auth-buttons {
        display: none;
    }


    .main {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/back2.jpg);
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        height: 40vh;
    }

    /* Hero Section */
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 38vh;
        margin-left: 0%;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .hero-content {
        /* border: 1px solid red; */
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .hero-content {
        /* border: 1px solid red; */
        height: 100%;
        width: 100%;
        padding: 1% 1%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    .hero-content h1 {
        font-size: 30px;
        /*background: linear-gradient(45deg, black 40%, #ff9900 0%);*/
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /*display:none;*/
        /* color: #0077ff; */
        /* text-shadow: 1px 0 0 #666; */
    }
    .hero-content p {
        margin: 10px 0;
        line-height: 36px;
        font-style: italic;
        color: #eee;
        font-size: 18px;
    }
    .hero-content p.get_c{
        font-size:20px;
        font-family: "Birthstone", serif;
    }

    .hero-content h1 span {
        color: #ff9900;
    }
    .custom-shape-divider-bottom-1734227123 {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 100;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }
    
    .custom-shape-divider-bottom-1734227123 svg {
        position: relative;
        display: block;
        width: calc(127% + 1.3px);
        height: 54px;
    }
    
    .custom-shape-divider-bottom-1734227123 .shape-fill {
        fill: #ebf8ff;
    }


    .ism-slider {
      height: 40vh;
      display:none;
      /*margin-top:10vh;*/
    }



    .features {
        background: #f8f9fd;
        padding: 0px;
        display: flex;
        justify-content: center;
    }

    .features-content {
        width: 100%;
        flex-direction: column;
    }

    .image-section {
        display: flex;
        width: 98%;
        margin-left: 1%;
        margin-bottom: 20px;
    }

    .image-section img {
        width: 100%;
        border-radius: 10px;
    }

    .text-section {
        width: 98%;
        margin-left: 1%;
    }

    .text-section h2 {
        font-size: 28px;
        color: #00274d;
        margin-bottom: 15px;
    }

    .text-section p {
        font-size: 14px;
        color: #666;
        margin-bottom: 5px;
        /* font-size: 12px; */
    }

    .feature_tab {
        display: flex;
        flex-direction: column;
        /* border: 1px solid red; */
        margin-bottom: 20px;
    }

    .feature_tab p.title {
        font-size: 16px;
        color: #00274d;
    }

    .text-section ul {
        /* list-style: none; */
        padding: 0;
        margin-left: 20px;
    }

    .text-section ul li {
        font-size: 12px;
        color: #666666;
    }


    .counter {
        width: 100%;
        padding: 20px;
    }

    .counter-content {
        max-width: 98%;
        margin-left: 1%;
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }

    .counter-item {
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 10px;
        background-color: #ffffff;
    }


    .pricing-section {
        text-align: center;
        background: #f8f9fd;
        background: #ffffff;
        padding-top: 150px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .pricing_section_content {
        width: 98%;
        display: flex;
        flex-direction: column;
        gap: 20px;

    }

    .pricing-section h2 {
        font-size: 32px;
        color: #00274d;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .pricing-section p {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }
    
    .modal-content{
        width:98%;
    }

    .tab-buttons {
        width: 98%;
        margin-left: 1%;
        padding: 10px;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        background-color: #ffffff;
        border-radius: 10px 50px;
    }

    .tab-buttons button {
        padding: 8px 20px;
        font-size: 14px;
        border: none;
        background: #e0f0ff;
        color: #003366;
        border-radius: 10px 50px;
        cursor: pointer;
    }

    .tab-buttons button.active {
        background: #007bff;
        color: #fff;
    }

    .pricing-cards {
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }

    .pricing-card {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        text-align: start;
    }

    .why-us {
        padding: 1rem 1rem;
        /* background-color: #f5f5f5; */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .why-us-items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 2rem;
        margin-top: 2rem;
        width: 80%;
    }

    .why-us-item {
        background-color: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }



    .agents {
        text-align: center;
        width: 98%;
        margin-left: 1%;
        background-color: #1565C020;
        border-radius: 10px;
        margin-bottom: 30vh;
        height: 100vh;
        padding: 20px;
    }

    .agents h2 {
        font-size: 24px;
        color: #555;
    }

    .agents h1 {
        font-size: 36px;
        color: #222;
        margin-bottom: 20px;
    }

    .agents p {
        font-size: 16px;
        margin-bottom: 40px;
        color: #666;
    }

    .card-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card-agents {
        display: flex;
        flex-direction: column;
        width: 98%;
        margin-left: 1%;
        /* border: 1px solid red; */
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        width: 250px;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .card img {
        width: 50px;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #0078ff;
    }

    .card p {
        font-size: 12px;
        color: #777;
    }

    footer {
        background-color: #1a1a1a;
        color: #ffffff;
        padding-top: 60px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 0 20px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
        margin: 0;
    }

    .footer-section p {
        color: #b3b3b3;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        color: #ffffff;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .social-links a:hover {
        color: #007bff;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: #007bff;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 12px;
    }

    .footer-section ul li a {
        color: #b3b3b3;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: #007bff;
    }

    .contact-info li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #b3b3b3;
    }

    .contact-info li i {
        color: #007bff;
        width: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
        border-top: 1px solid #333;
    }

    .footer-bottom-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .footer-bottom p {
        margin: 0;
        color: #b3b3b3;
    }

    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }

    .footer-bottom-links a {
        color: #b3b3b3;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: #007bff;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .footer-content {
            grid-template-columns: 1fr;
        }

        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
    }

    /* Add these styles */
    .whatsapp-float {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background-color: #25d366;
        color: #FFF;
        width: 60px;
        height: 60px;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    .testimonials .flex{
        gap: 20px;  
        display: flex;
        flex-direction: column;
        /* align-items: flex-start; */
        justify-content: center;
    }
    .text_f_testimonials{
        width: 98%;
        margin-left: 1%;
        /* border: 1px solid red; */
        /* text-align: center; */
    }
    .scroll-to-top{
        position: fixed;
        bottom: 80px;
        right: 10px;
        background-color: #C01190;
        /* Dark background color */
        color: #ffffff;
        /* White text color */
        padding: 15px 20px;
        border-radius: 20%;
        /* Circular button */
        text-align: center;
        font-size: 18px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        /* Remove underline */
        display: none;
        /* Hidden by default */
        transition: background-color 0.3s, transform 0.3s;
        z-index: 1000;
        /* Ensure it appears above other content */
}


}