@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #ff0000, #ff9900);
    background-attachment: fixed;
    background-size: cover;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Decorative Fixed Background Images */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
    -webkit-transform: translateZ(0); /* Fix for iOS background */
    transform: translateZ(0);
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(215, 206, 200, 0.0);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Navigation */
nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.4rem;
    white-space: nowrap;
    transition-duration: 0.3s;
    text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
}

nav a:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2);
}

/* Fix for the login button to align */
nav .login-btn {
    background: #ff0000;
    padding: 10px 20px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition-duration: 0.3s;
}

nav .login-btn:hover {
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 80px;
    width: auto;
    margin-left: 10px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-brand .logo {
        height: 60px;
    }

    nav a {
        font-size: 1.2rem;
    }

    .frosted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 10px 0;
    }

    .nav-brand .logo {
        height: 50px;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }

    .frosted-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .title-icon {
        margin-left: 0 !important;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        height: 40px;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }

    .badge {
        padding: 0.4rem 2rem;
        font-size: 0.9rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for iOS background */
@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
    }
    
    .fixed-bg {
        position: absolute;
    }
}

/* Landing Section */
.landing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50vh;
    padding-bottom: 30vh;
    padding-left: 2vh;
    padding-right: 2vh;
    height: 40vh;
    text-align: center;
}

.content {
    animation: floatUp 1.5s ease-out;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    color: rgba(0, 0, 0, 0.4);
    padding: 0.6rem 3.8rem;
    border-radius: 20px;
    font-size: 1rem;
    margin-bottom: 5px;
    border: 1.5px solid rgba(42, 23, 5, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: "Montserrat", serif;
    font-size: 4rem;
    margin: 6px 0;
    line-height: 92%;
    margin-bottom: 15px;
}

p {
    font-weight: 350;
    font-size: 1.4rem;
    margin: 10px 0;
    line-height: 110%;
    color: #f3e6dd;
    opacity: 0.9;
}

.cta-btn {
    background: #ff0000;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1.3rem 3rem;
    font-size: 2.0rem;
    font-weight: bold;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition-duration: 0.3s;
}

.cta-btn:hover {
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.2);
}

.instant-setup {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Scroll Icon Section */
.scroll-icon {
    position: relative;
    text-align: center;
    margin-top: 75px;
    margin-bottom: 100px;
    animation: fadeIn 1.5s ease-out forwards;
}

.scroll-icon .arrow {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    transform: rotate(-45deg);
    margin: 0 auto;
    animation: bounce 1.5s infinite;
}

/* Animation for the arrow */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(10px) rotate(-45deg);
    }
}


/* Frosted Section Layout */
.frosted-section {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    padding: 30px;
    padding-top: 10vh;
    padding-bottom: 15vh;
    background-color: #131110;
}

/* Normal Box */
.box {
    padding: 40px;
    text-align: center;
    width: 80%;
    max-width: 900px;
    color: rgb(255, 255, 255);
    border: none;
    margin-bottom: 40px; /* Add space between normal box and frosted grid */
}

.box h2 {
    font-size: 3.2rem;
    margin-bottom: -2px;
    font-weight: bold;
}

.box h3 {
    font-size: 1.2rem;
    margin-bottom: 0px;
    font-weight: 400;
}

.gradient {
    display: inline;
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    background: radial-gradient(180% 250% at 50% 100%, #ff0000 0%, #ff9900 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradientcontainer {
    padding-top: 0rem;
    padding-bottom: 0.25rem;
}

.box p {
    opacity: 0.71;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
}

/* Frosted Boxes Grid */
.frosted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 35px; /* Space between boxes */
    row-gap: 50px;
    width: 100%; /* Full width of the section */
    max-width: 1500px;
}

.frosted-box {
    position: relative; /* Needed for pseudo-element positioning */
    background: #1f1d1c;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    color: #ffffffa3;
    border: 1px solid #a13b0772;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    transition: border 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    overflow: hidden; /* Ensure pseudo-element stays inside the box */
}

.frosted-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0000, #ff9900);
    opacity: 0; /* Start hidden */
    transition: opacity 0.4s ease; /* Smooth opacity transition */
    z-index: -1; /* Place behind content */
}

.frosted-box:hover::before {
    opacity: 1; /* Show gradient */
}

.frosted-box:hover {
    border: 1.8px solid radial-gradient(180% 250% at 50% 100%, #fff 0%, #fff 40%);
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px); /* Slight lift effect on hover */
}

.frosted-box:hover .gradient {
    background: radial-gradient(180% 250% at 50% 100%, #fff 0%, #fff 40%);
    transition: color 0.4s ease;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.frosted-box:hover .box-line {
    background: #fff;
    transition: background 0.4s ease;
}

.frosted-box:hover h2 {
    color: #fff
}

.frosted-box:hover p {
    color: #fff;
    font-size: 1.4;
    font-weight: 300;
}

.frosted-box:hover p {
    color: #fff;
    font-size: 1.4;
    font-weight: 300;
}


.frosted-box h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
}

.title-icon {
    margin-left: 80px; /* Space between the title and icon */
    color:#ff4d00b9; /* Icon color */
    font-size: 1.5rem; /* Adjust size of the icon */
    vertical-align: middle; /* Align icon with the text */
    transition: color 0.3s ease;
    padding-bottom: 0.25rem;
}


.box-line {
    width: 100%; /* Adjust width as needed */
    height: 2px; /* Thickness of the line */
    background: radial-gradient(180% 250% at 50% 100%, #ff0000 0%, #ff9900 40%); /* Line color */
    margin: 0px; /* Center the line with spacing */
    border: none;
    border-radius: 5px; /* Rounded edges for a smoother look */
    transition-duration: 0.3s;
}

.frosted-box p {
    text-align: left;
    color: #ffffffa0;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.3;
}

/* Comparison Section */
.comparison {
    margin: 150px auto;
    padding: 20px;
    text-align: center;
    background: #13111000;
    
    border-radius: 14px;
    color: white;
    max-width: 1250px;
}

.comparison p {
    opacity: 0.95;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
}

/* Title */
.comparison-title {
    font-size: 3.2rem;
    margin-bottom: -2px;
    font-weight: bold;
}

/* Comparison Table */
/* Table Styling */
.comparison-table {
    overflow-x: auto;
    padding: 15px;
    overflow-y: hidden;
}

.comparison-table table {

    width: 100%;
    border-spacing: 0; /* No gaps between cells */
    border: 1.5px solid #4C4A49; /* Accurate outer border color */
    background: #1f1d1c; /* Table background */
    border-radius: 12px; /* Rounded corners for outer border */
    overflow: hidden; /* Keep everything within the border radius */
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.3);
    padding: 25px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid #4C4A49; /* Horizontal cell borders */
    transition: 0.4s;
}

.comparison-table th {
    background: #1f1d1c; /* Header background */
    color: #ffffffa3;
    font-weight: 500;
    font-size: 1.1rem;

}

.comparison-table td {
    background: #1f1d1c;
    color: #ffffffa3;

}

.comparison-table tr:last-child td {
    border-bottom: none; /* No bottom border for the last row */
}

/* Remove Last Column's Border */
.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

/* Highlighting */
.comparison-table td:first-child {
    font-weight: 500;
    text-align: left;
}

.comparison-table tr:hover td {
    background: #a13b0772; /* Highlight row on hover */
}

.comparison-disclaimer {
    font-size: 0.8rem;
    color: #282828e4;
    text-align: left; 
    margin-bottom: -12px;
    text-shadow: 2px 2px 4px #13111032;
}

.comparison-disclaimer2 {
    font-size: 0.8rem;
    color: #282828e4;
    text-align: right; 
    margin-bottom: -12px;
    text-shadow: 2px 2px 4px #13111032;
}

.comparison-disclaimer3 {
    font-size: 0.8rem;
    color: #282828e4;
    text-align: left; 
    margin-top: -30px;
    margin-bottom: -12px;
    text-shadow: 2px 2px 4px #13111032;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .comparison-disclaimer2 {
        text-align: left; 
    }
    .comparison-disclaimer3 {
        margin-top: 12px; 
    }
    .comparison-title {
        font-size: 1.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 0.9rem;
        padding: 10px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-radius: 9px;
    }

    .badge {
        padding: 0.4rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .frosted-section {
        margin-top: 0vh;
    }

    .box h2 {
        font-size: 1.8rem;
    }

    .box h3 {
        font-size: 1.2rem;
    }

    .box p {
        font-size: 0.8rem;
    }

    .box {
        padding: 0;
        width: 100%;

    }

    .frosted-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

.map-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh; /* Ensure full vertical height */
    background: #131110; /* Background color */
    color: white;
    padding: 20px; /* Add padding for responsive spacing */
}

.box {
    margin-bottom: 20px; /* Space between text and map */
    max-width: 800px; /* Optional: Limit text width */
    padding: 0 20px; /* Padding for smaller screens */
    text-align: center;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.svg-container g {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gradient-map-svg {
    width: 100%; /* Responsive scaling */
    height: auto; /* Maintain aspect ratio */
}

.world-map-img {
    padding-left: 30px;
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns */
    gap: 35px; /* Space between boxes */
    row-gap: 50px;
    width: 100%; /* Full width of the section */
    max-width: 1500px;
    padding-top: 5vh;
}

.pricing-box {
    position: relative; /* Needed for pseudo-element positioning */
    background: #1f1d1c;
    backdrop-filter: blur(3px);
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    color: #ffffffa3;
    border: 1px solid #a13b0772;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    transition: border 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    transition-duration: 0.4s;
    margin: 2px;
    overflow: hidden; /* Ensure pseudo-element stays inside the box */
}


.pricing-box:hover {
    background: rgba(228, 181, 143, 0.3);
    border: 1.8px solid radial-gradient(180% 250% at 50% 100%, #fff 0%, #fff 40%);
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px); /* Slight lift effect on hover */
}

.pricing-box:hover .gradient {
    background: radial-gradient(180% 250% at 50% 100%, #fff 0%, #fff 40%);
    transition: color 0.4s ease;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-box:hover .box-line {
    background: #fff;
    transition: background 0.4s ease;
}

.pricing-box:hover h2 {
    color: #fff
}

.pricing-box:hover p {
    color: #fff;
    font-size: 1.6;
    font-weight: 300;
}

.pricing-box:hover p {
    color: #fff;
    font-size: 1.6;
    font-weight: 300;
    padding: 2p;
}


.pricing-box h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
}


.footer {
    background: #131110;
    color: #ffffffa3;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 300px;
    text-align: left;
}

.footer-logo {
    height: 75px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links {
    flex: 2 1 500px;
    display: flex;
    justify-content: space-around;
}

.link-group h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group li {
    margin-bottom: 8px;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: white;
}

.footer-social {
    flex: 1 1 300px;
    text-align: left;
}

.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #4C4A49;
    padding-top: 10px;
    font-size: 0.2rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        text-align: center;
    }

    .world-map-img {
        padding-left: 5px;
        max-width: 100%;

    }
}

@media (max-width: 480px) {
    .frosted-grid {
        grid-template-columns: 1fr; /* 1 column on extra small screens */
    }

    .pricing-grid {
        grid-template-columns: 1fr; /* 1 column on extra small screens */
    }

}


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