.esim-countries-section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #4fc3f7;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.esim-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.esim-card {
    /*height: 200px; */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.esim-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.country-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.esim-card:hover .country-image img {
    transform: scale(1.1);
}

.esim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="40" y="40" width="120" height="80" rx="10" fill="none" stroke="rgba(79,195,247,0.3)" stroke-width="2"/><rect x="60" y="60" width="80" height="40" rx="5" fill="none" stroke="rgba(79,195,247,0.2)" stroke-width="1"/><circle cx="100" cy="80" r="8" fill="rgba(79,195,247,0.15)"/><path d="M80 100 L120 100 M80 110 L120 110 M80 120 L120 120" stroke="rgba(79,195,247,0.2)" stroke-width="1"/></svg>');
    background-size: cover, 150px 150px;
    background-position: center, 20px 20px;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.country-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 20px 15px 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s;
    background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
    z-index: 2;
}

.esim-card:hover .card-glow {
    opacity: 0.6;
    animation: pulse 2s infinite;
}

/* contact form section style starts */
/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #0f1b33 0%, #1a3a5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    z-index: 2;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    color: white;
    animation: fadeInLeft 1s ease-out;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #c5d4eb;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: #4facfe;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #0a55eb
}

.feature-text p {
    font-size: 0.9rem;
    margin: 0;
    color: #a8c0e4;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    animation: fadeInRight 1s ease-out;
    z-index: 2;
}

.contact-form-items {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}



.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
    padding: 18px 30px;
    border: 1px solid #d5d5d5;
    outline: none;
    background-color: var(--white);
    width: 100%;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

/* Focus and Active States for Form Elements */
.contact-form-items .form-clt input:focus,
.contact-form-items .form-clt textarea:focus,
.contact-form-items .form-clt input:active,
.contact-form-items .form-clt textarea:active {
    border-color: #4facfe !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Hover state for better interaction */
.contact-form-items .form-clt input:hover,
.contact-form-items .form-clt textarea:hover {
    border-color: #a8d2ff;
    transition: all 0.3s ease;
}

/* Specific focus animation for inputs */
.contact-form-items .form-clt {
    position: relative;
}

.contact-form-items .form-clt input:focus + label,
.contact-form-items .form-clt textarea:focus + label {
    color: #4facfe;
    transform: translateY(-25px) scale(0.9);
}

/* Placeholder transition on focus */
.contact-form-items .form-clt input:focus::placeholder,
.contact-form-items .form-clt textarea:focus::placeholder {
    color: #a8c0e4;
    transition: color 0.3s ease;
}

/* Animation for when input becomes valid */
.contact-form-items .form-clt input:valid:not(:placeholder-shown),
.contact-form-items .form-clt textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background-color: #f8fff9;
}

/* Animation for when input is invalid but touched */
.contact-form-items .form-clt input:invalid:not(:placeholder-shown):not(:focus),
.contact-form-items .form-clt textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #dc3545;
    background-color: #fff8f8;
    animation: shake 0.5s ease-in-out;
}

/* Shake animation for invalid inputs */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Smooth transition for all states */
.contact-form-items .form-clt input,
.contact-form-items .form-clt textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}





/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* Floating elements animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form-items {
        padding: 30px 20px;
    }
}
/*contact form section style section ends */

/* alert messages div style starts */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    font-family: system-ui, -apple-system, sans-serif;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-error {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-default {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}
/* alert messages div style ends */

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .esim-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .esim-card {
        height: 180px;
    }
    
    .country-name {
        font-size: 1.2rem;
        padding: 15px 10px 10px;
    }
}

@media (max-width: 480px) {
    .esim-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}







/* Compact Working Process Styles */
.compact-process-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
    overflow: hidden;
}

.compact-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.compact-process-title {
    text-align: center;
    margin-bottom: 40px;
}

.compact-process-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bbdefb;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.compact-process-heading {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.compact-process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

.compact-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.compact-step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compact-step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.compact-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #448aff, #2979ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(41, 121, 255, 0.4);
}

.compact-step-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.compact-step-desc {
    font-size: 14px;
    color: #e3f2fd;
    line-height: 1.5;
}

.compact-process-connector {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.compact-process-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #448aff, #2979ff);
    transition: width 1.5s ease;
}

.compact-process-section.in-view .compact-process-connector::after {
    width: 100%;
}

.compact-process-dots {
    position: absolute;
    top: 22px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.compact-process-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.compact-process-section.in-view .compact-process-dot {
    background: #448aff;
    box-shadow: 0 0 0 4px rgba(68, 138, 255, 0.3);
}

.compact-process-dot:nth-child(1) {
    transition-delay: 0.3s;
}

.compact-process-dot:nth-child(2) {
    transition-delay: 0.8s;
}

.compact-process-dot:nth-child(3) {
    transition-delay: 1.3s;
}

.compact-step-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.compact-process-section.in-view .compact-step-card {
    opacity: 1;
    transform: translateY(0);
}

.compact-process-section.in-view .compact-step-card:nth-child(1) {
    transition-delay: 0.4s;
}

.compact-process-section.in-view .compact-step-card:nth-child(2) {
    transition-delay: 0.9s;
}

.compact-process-section.in-view .compact-step-card:nth-child(3) {
    transition-delay: 1.4s;
}

/* Background Elements */
.compact-bg-shape-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(68, 138, 255, 0.1);
    animation: compact-float 8s ease-in-out infinite;
}

.compact-bg-shape-2 {
    position: absolute;
    bottom: 15%;
    right: 7%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(41, 121, 255, 0.08);
    animation: compact-float 10s ease-in-out infinite reverse;
}

@keyframes compact-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .compact-process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .compact-process-connector {
        display: none;
    }
    
    .compact-process-dots {
        display: none;
    }
    
    .compact-process-heading {
        font-size: 26px;
    }
    
    .compact-step-card {
        max-width: 300px;
        margin: 0 auto;
    }
}


/* Dashboard Image styles starts */
.dashboard-image {
    position: relative;
    margin: 40px auto;
    max-width: 800px;
    animation: float 3s ease-in-out infinite;
}

.dashboard-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -60px;
    background: linear-gradient(145deg, #2a3a52, #1a2536);
    border-radius: 20px 20px 60px 60px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.dashboard-image::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #4a5568, #2d3748, #4a5568);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Laptop webcam dot */
.dashboard-image .webcam {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #4a5568;
    border-radius: 50%;
    z-index: 2;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glow effect on hover */
.dashboard-image:hover::before {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(79, 172, 254, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-image:hover img {
    box-shadow: 
        0 15px 40px rgba(79, 172, 254, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-image {
        margin: 30px auto;
        max-width: 90%;
    }
    
    .dashboard-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -40px;
        border-radius: 15px 15px 40px 40px;
    }
    
    .dashboard-image::after {
        bottom: -35px;
        width: 80px;
        height: 6px;
    }
}
/* Dashboard Image styles ends */


/* About Us section starts */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.elegant-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.elegant-list li:last-child {
    border-bottom: none;
}

.elegant-list li:hover {
    padding-left: 10px;
}

.list-marker {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.elegant-list li:hover .list-marker {
    transform: scale(1.5);
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.list-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

.list-text strong {
    color: #1a3a5f;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a3a5f;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
}
/* About Us section ends */


/* why choose us sections starts */
.elegant-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.elegant-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.elegant-list li:last-child {
    border-bottom: none;
}

.elegant-list li:hover {
    padding-left: 10px;
}

.list-marker {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.elegant-list li:hover .list-marker {
    transform: scale(1.5);
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.list-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
}

.list-text strong {
    color: #1a3a5f;
    font-weight: 600;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a3a5f;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
}

.why-choose-image {
    text-align: center;
    position: relative;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/* why choose us section ends */