/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

.adc-cta-wrapper {
    --primary-blue: #0062ff;
    --dark-navy: #0a192f;
    --text-gray: #b0b8c4;
    padding: 20px;
    background-color: #f8faff;
    font-family: 'Inter', sans-serif;
}

.adc-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--dark-navy);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Background Abstract Shape */
.adc-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.adc-content-box {
    flex: 1;
    z-index: 2;
}

.adc-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.adc-dot {
    height: 8px;
    width: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff88;
}

.adc-main-heading {
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.adc-main-heading span {
    color: var(--primary-blue);
}

.adc-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.adc-action-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.adc-btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 98, 255, 0.3);
}

.adc-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.adc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.adc-trust-footer {
    color: #6a778d;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Visual Element (Floating Card) */
.adc-visual-element {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
}

.adc-floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.adc-icon-shield {
    font-size: 40px;
    color: #00ff88;
    margin-bottom: 10px;
}

.adc-card-text {
    font-weight: 600;
}
.pra {
    color:#fff;
}
/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .adc-container {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }
    .adc-visual-element {
        display: none; /* Hide on mobile for cleaner look */
    }
    .adc-action-group {
        flex-direction: column;
    }
    .adc-main-heading {
        font-size: 1.8rem;
    }
    .mob-outer{
        display: none !important;
    }
}
/* Container and Wrapper */
.sl-contact-hero-wrapper {
    margin-top: 85px;
    background: linear-gradient(135deg, #000044 0%, #000088 100%);
    min-height: 550px;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.sl-main-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Background Decorations */
.sl-geometric-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.sl-geometric-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    bottom: -150px;
    right: 5%;
    transform: rotate(45deg);
}

/* Left Text Styling */
.sl-text-content-box {
    flex: 1;
    max-width: 600px;
    color: #ffffff;
}

.sl-sub-headline {
    color: #00d4ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.sl-main-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: burlywood;
}

.sl-main-title span {
    color: #00d4ff;
}

.sl-description-text {
    font-size: 1.1rem;
    color: #d1d1f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.sl-btn-primary {
    background: #00d4ff;
    color: #000044;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
    transition: 0.3s;
}

.sl-btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.sl-btn-primary:hover { background: #0c0c0c; }

/* Right Visual Frame (Polaroid Refined) */
.sl-visual-frame-box {
    flex-shrink: 0;
}

.sl-polaroid-frame-premium {
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-5deg) rotate(2deg);
    transition: 0.5s ease-in-out;
}

.sl-polaroid-frame-premium:hover {
    transform: perspective(1000px) rotateY(0deg) rotate(0deg) scale(1.05);
}

.sl-image-wrapper {
    width: 280px;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.sl-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-polaroid-footer {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sl-footer-line {
    width: 40px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sl-main-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .sl-main-container {
        flex-direction: column;
        text-align: center;
    }
    
    .sl-text-content-box {
        margin-bottom: 50px;
    }
    
    .sl-polaroid-frame-premium {
        transform: none;
    }
}
/* Container Styling */
.sl-contact-container {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

/* Header Section */
.sl-sub-title {
    color: #3498db;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.sl-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sl-description {
    color: #777;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Info Cards Styling */
.sl-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sl-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fbfafa;
}

.sl-info-card:hover {
    background: #ffffff;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.sl-icon-box {
    min-width: 55px;
    height: 55px;
    background: #1a1a1a; /* Dark theme icons like your image */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    transition: 0.3s;
}

.sl-info-card:hover .sl-icon-box {
    background: #3498db; /* Blue highlight on hover */
    transform: scale(1.1) rotate(-5deg);
}

/* Content Details */
.sl-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.sl-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sl-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: 0.2s;
    display: block;
}

.sl-links a span {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.sl-links a:hover {
    color: #3498db;
}

.sl-address-text {
    font-style: normal;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .sl-contact-container {
        padding: 25px;
    }
    .sl-main-heading {
        font-size: 28px;
    }
    .sunlite-call-box{
        display: none !important;
    }
}
/* Unique Button Container */
/* CALL BOX */
.sunlite-call-box{
display:inline-flex;
align-items:center;
gap:8px;
text-decoration:none;
padding:5px 10px;
color:#fff;
}

/* TEXT WRAP */
.sunlite-text-wrap{
display:flex;
flex-direction:column;
line-height:1.2;
}

/* CALL ANYTIME */
.sunlite-text-wrap small{
font-size:11px;
color:white;
text-transform:uppercase;
letter-spacing:0.5px;
}

/* PHONE NUMBER */
.sunlite-text-wrap span{
font-size:14px;
font-weight:600;
color:#fff;
}

/* PHONE ICON */
.sunlite-phone-ring{
display:flex;
align-items:center;
justify-content:center;
color:#2ecc71;
font-size:20px;
animation:ring-vibrate-unique 0.6s infinite ease-in-out;
}

/* RING ANIMATION */
@keyframes ring-vibrate-unique{
0%{transform:rotate(0);}
15%{transform:rotate(15deg);}
30%{transform:rotate(-15deg);}
45%{transform:rotate(15deg);}
60%{transform:rotate(-15deg);}
75%{transform:rotate(10deg);}
90%{transform:rotate(-10deg);}
100%{transform:rotate(0);}
}

/* HOVER */
.sunlite-call-box:hover .sunlite-phone-ring{
color:#fff;
}

    .adc-orbit-container {
        position: relative;
        width: 450px;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Center Circle Styling */
    .adc-center-circle {
        width: 100px;
        height: 100px;
        background: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: bold;
        font-size: 0.9rem;
        z-index: 10;
        /* Improved Shadow */
        box-shadow: 0 10px 25px rgba(0,123,255,0.5);
        transition: transform 0.3s ease;
        cursor: pointer;
        border: 3px solid;
    }

    /* Center Circle Hover */
    .adc-center-circle:hover {
        transform: scale(1.1);
        background: #0056b3;
    }

    /* Common Orbit Item Styling */
    .adc-orbit-item {
        position: absolute;
        padding: 8px 12px;
        background: white;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        /* Default Shadow */
        box-shadow: 0 4px 15px #0d6efd;
        white-space: nowrap;
        animation: orbitRotate 15s linear infinite;
        transition: all 0.3s ease; /* Hover transitions ke liye */
        cursor: pointer;
        border:2px solid #0d6efd;
    }

    /* Hover Effect for Orbit Items */
    .adc-orbit-item:hover {
        background: #007bff;
        color: white;
        box-shadow: 0 8px 20px rgb(0 123 255 / 65%);
        border-color: #007bff;
        z-index: 20;
    }

    /* Animation Pause on Hover */
    .adc-orbit-container:hover .adc-orbit-item {
        animation-play-state: paused;
    }

    /* Positioning Each Item */
    .item-1 { animation-delay: 0s; transform-origin: -80px center; left: 180px; }
    .item-2 { animation-delay: -2.5s; transform-origin: -80px center; left: 180px; }
    .item-3 { animation-delay: -5s; transform-origin: -80px center; left: 180px; }
    .item-4 { animation-delay: -7.5s; transform-origin: -80px center; left: 180px; }
    .item-5 { animation-delay: -10s; transform-origin: -80px center; left: 180px; }
    .item-6 { animation-delay: -12.5s; transform-origin: -80px center; left: 180px; }

    @keyframes orbitRotate {
        from {
            transform: rotate(0deg) translateX(110px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(110px) rotate(-360deg);
        }
    }


/* 1. Offer Banner Styling */
.offer-banner {
    background-color: #2196F3; /* Bright Blue */
    color: white;
    padding: 40px;
}
.offer-bannerrr {
    background-color: #ffd658; /* Bright Blue */
    color: white;
    padding: 40px;
}
.offer-bannerr {
    background-color: #05253f; /* Bright Blue */
    color: white;
    padding: 40px;
}
.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0px;
}

.sub-heading {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 5px;
}

.view-more-btn {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
}

.view-more-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    color: #0c0c0c;
}

/* 2. Category Section Styling */
.category-section {
    background-color:#0b0820; /* Dark Gray/Black */
    padding: 60px 0;
    text-align: center;
}

.category-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
}

.img-box {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #444;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.img-box img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.category-item:hover .img-box {
    border-color: #2196F3;
}

.category-item h3 {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offer-content {
        justify-content: center;
        text-align: center;
    }
    .main-heading {
        font-size: 1.6rem;
    }
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}