* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Tahoma
}
.logo {
    display: flex;
    align-items: center;
    max-width: 200px; 
}

.logo img {
    width: 80%;
    height: auto;
    display: block;
}


header {
    background: #00307a;
    background-image:url();
    color: #fff;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%
    
}

nav {
    display: flex;
    gap: 35px
}

nav a {
    font: 17px Tahoma;
    color: #fff;
    text-decoration: none
}

.btn {
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    font: 17px Tahoma
}

#ham {
    display: none;
    font-size: 32px
}

.hero {
    background: #071a34;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 7%;
    min-height: calc(100vh - 90px);
    width: 100%;
    min-height: 85vh;
    /* background: linear-gradient(rgba(2, 13, 38, 0.55), rgba(2, 13, 38, 0.55)),
                url("../header3.jpg"); */
background-size: 100% 100%;

    background-image: url('../header3.jpg');            
     background-repeat: no-repeat;

    background-position: center center;
   background-size: cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-position: top center;
   



}

.left {
    flex: 1
}

.wifi {
    font-size: 220px;
    text-align: center;
    
}

.wifi img{
   max-width: 66%;
  filter: blur(0px) brightness(102%) contrast(100%) grayscale(0%) hue-rotate(0deg) opacity(71%) saturate(100%);
  padding-right: 101px;
}


.right {
    flex: 1;
    padding-bottom: 40px;
}

h1 {
    font: 700 70px Georama, sans-serif;
    line-height: 1
}

.right p {
    font: 17px Tahoma;
    margin: 25px 0;
    line-height: 1.8
}

.card {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 18px;
    display: flex;
    justify-content: space-around
}

.card h3 {
    font-size: 25px;
    font-family: 'Biryani', sans-serif;
}

.card span {
    font: 17px Tahoma
}

.choosing-us-section {
    padding: 80px 7%;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.choosing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}


.choosing-left {
    flex: 1;
    position: relative;
    padding-left: 45px; 
}


.image-back-block {
    position: absolute;
    left: 0;
    top: 12%;
    width: 65px;
    height: 76%;
    background-color: #00307a;
    z-index: 1;
}

.image-front-box {
    position: relative;
    z-index: 2;
    width: 100%;
}

.image-front-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.choosing-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.choose-sub-title {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #f35252;
    font-weight: 700;
    margin-bottom: 15px;
}

.choose-main-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    color: #000000;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.choose-desc {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 35px;
}


.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #000000;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Light Grey Base Bar */
.progress-bar-bg {
    width: 100%;
    height: 16px;
    background-color: #eff0f1;
    border-radius: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #00307a;
    border-radius: 30px;
    width: 0; 
    animation: fillBars 2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}


.fill-98 { --target-width: 98%; }
.fill-96 { --target-width: 96%; }
.fill-85 { --target-width: 85%; }

@keyframes fillBars {
    to {
        width: var(--target-width);
    }
}





.services-section {
    padding: 50px 7%;
    background-color: #ffffff;
    text-align: center;
}

.services-header {
    margin-bottom: 50px;
}

.services-header h2 {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #f35252;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-header h1 {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px; 
    max-width: 1200px;
    margin: 0 auto;
}


.outer-box {
    padding: 20px;
    display: flex;
}


.service-card {
    border-radius: 15px;
    padding: 35px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Icons Style */
.service-card .icon-box i {
    font-size: 45px;
    color: #f35252;
}

.service-card h3 {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.service-card p {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}



/* Card 1 */
.out-blue { background-color: #deebee; }
.card-blue { background-color: #8ec4f4; }

/* Card 2 */
.out-cream1 { background-color: #faf8bb; }
.card-yellow { background-color: #f4d06b; }

/* Card 3 */
.out-cream2 { background-color: #faf8bb; }
.card-purple { background-color: #a96af7; }

/* Card 4 */
.out-green1 { background-color: #c7facb; }
.card-green { background-color: #4ff3aa; }

/* Card 5 */
.out-green2 { background-color: #bcfba3; }
.card-lightgreen { background-color: #86e07b; }

/* Card 6 */
.out-cyan { background-color: #c4fbdb; }
.card-cyan { background-color: #86ebe3; }




.counter-section {
    background-color: #00307a;
    padding: 60px 7%;
    width: 100%;
    margin: 30px 0px;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
    gap: 30px;
}

.counter-box {
    text-align: center;
    flex: 1;
    min-width: 200px; 
}


.counter-number {
    font-family: 'Georama', sans-serif;
    font-size: 45px;
    color: #f35252;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

/* Text Styling */
.counter-box h3 {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}



.features-section {
    padding: 50px 7%;
    background-color: #ffffff;
    width: 100%;
}

.features-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start;
}

/* Left Content Column */
.features-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features-left .sub-title {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #f35252;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-left .main-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    color: #000000;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.feature-img-box {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.feature-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Content Column */
.features-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px; 
}
                   


.feature-item-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}


.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #eff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
}


.feature-icon i {
    font-size: 32px;
    color: #f35252;
}


.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text h3 {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.feature-text p {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #555555;
    line-height: 1.4;
    margin: 0;
}




.business-info-banner {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}


.banner-title-wrapper {
    padding: 15px 10px;
    /* border-bottom: 3px solid #fdbb4a;  */
    width: 100%;
}

.banner-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #fdbb4a;
    font-weight: 700;
    letter-spacing: 2px;
    
    margin: 0;
    display: inline-block;
    text-decoration-line: underline;
text-decoration-color: #fdbb4a;
text-decoration-thickness: 2px;
    
}


.banner-content-block {
    background: linear-gradient(150deg, #44d3f64a 23%, #8f781180 45%, #b9eb2c4d 100%);
    padding: 25px 5%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #000000;
}


.banner-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.banner-row-mid {
    margin: 0 auto;
}


.banner-text {
    font-family: 'Tahoma', sans-serif;
    font-size: 25.5px;
    font-weight: bold;
}

.banner-address {
    font-family: 'Tahoma', sans-serif;
    font-size: 19px;
    font-weight: bold; /* Screenshot ke mutabik bold font */
    margin: 0 auto;
    max-width: 1000px;
    line-height: 1.4;
}


/* --- Main Footer Styles --- */
.main-footer {
    width: 100%;
    position: relative;
  
    background: linear-gradient(rgba(3, 47, 82, 0.6), rgba(3, 47, 82, 0.6)), 
                url('../header2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding-top: 60px;
    overflow: hidden;
}


.footer-top-container {
   max-width: 1500px;
    margin: 0 auto;
    padding: 0 7% 40px 7%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

/* Column 1 Typo */
.footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-desc {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #e0e0e0;
    
    margin-bottom: 25px;
}


.footer-socials{
    display: flex;
}
.footer-socials a {
    width: 45px;
    height: 45px;
    background-color: #ffffff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
   margin-left: 10px;
    color: rgb(112 137 231 / 98%); 
    
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: rgb(112 137 231 / 98%); 
    color: #ffffff;
}

/* Headings (Services & Contact) */
.col-heading {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}


.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
}


.contact-info-list li i {
    color: rgb(112 137 231 / 98%);
    font-size: 20px;
    width: 20px;
    text-align: center;
}


.subscribe-form {
    display: flex;
    max-width: 335px;
    height: 45px;
    border: 1px solid #ffffff;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 15px;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
}

.subscribe-form input::placeholder {
    color: #cccccc;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 0 20px;
    cursor: pointer;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
}

.bottom-policy-links {
    display: flex;
    gap: 25px;
}

.bottom-policy-links a {
    color: #ffffff;
    text-decoration: none;
}






/* --- Privacy Policy Section Styles --- */
.privacy-policy-section {
    width: 100%;
    padding: 60px 7%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.policy-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}


.policy-container p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 16px;
}


.policy-main-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px; 
    font-weight: bold;
    color: #000000;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.policy-sub-heading {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}


.highlight-text {
    margin-bottom: 18px !important;
}
.policy-list{
    font-family: 'Times New Roman', Times, serif;
}
.meta-info{
    font-family: 'Times New Roman', Times, serif;
}
/* Term & Condition page ///////////////// */
.terms-conditions-section {
            width: 100%;
            padding: 60px 7%;
            background-color: #ffffff;
            box-sizing: border-box;
        }

        .terms-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
        }

        
        .terms-container p, 
        .terms-container li,
        .terms-container .meta-info {
            font-family: 'Times New Roman', Times, serif;
            font-size: 16px;
            color: #000000;
            line-height: 1.6;
            margin-top: 0;
            margin-bottom: 18px;
        }

        
        .terms-main-heading {
            font-family: 'Times New Roman', Times, serif;
            font-size: 16px;
            font-weight: bold;
            color: #000000;
            margin-top: 0;
            margin-bottom: 25px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        /* Bullet List Reset */
        .terms-list {
            margin: 0 0 20px 0;
            padding-left: 25px;
            list-style-type: disc;
        }

        .terms-list li {
            margin-bottom: 12px;
        }

        /* Highlighted Note / Warning Box */
        .terms-note-box {
            background-color: #f9f9f9;
            border-left: 4px solid #f35252;
            padding: 15px 20px;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .terms-note-box p {
            margin-bottom: 0;
            font-weight: bold;
        }


/* --- Shipping Policy  --- */
.policy-section-shipping {
    width: 100%;
    padding: 60px 7%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.policy-container-shipping {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}


.policy-title-shipping {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.policy-text-shipping {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 20px;
}

.policy-text-shipping strong {
    color: #000000;
}


.policy-text-shipping a {
    color: #f35252;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.policy-text-shipping a:hover {
    border-bottom-color: #f35252;
}


.policy-contact-info-shipping {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
}


.webli-offers-section {
    width: 100%;
    padding: 80px 5%;
    background-image: url('../home-bg1.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.offers-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.main-top-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
}

.main-top-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333333;
    max-width: 850px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.isp-partners-wrapper {
    margin-bottom: 60px;
}

.isp-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
}

.isp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 220px));
    gap: 15px 40px;
    justify-content: center;
    text-align: left;
}

.isp-item {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 17px;
    font-weight: bold;
}


.alliance-color { color: #009444; }
.bsnl-color { color: #0054a6; }
.world-color { color: #ed1c24; }
.fab5-color { color: #d71920; }


.offers-blocks-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offer-row-item {
    width: 100%;
}

.offer-block-title {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.free-conn-title {
    color: #d33b24; 
}

.offer-block-text {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 17px;
    color: #222222;
    line-height: 1.6;
    margin: 0;
}


.webli-dual-terms-section {
    width: 100%;
    padding: 80px 5%;
    background-image: url('../contact.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    /* opacity: 0.9; */
    border-top: 2px solid #eaeaea;
}

.dual-terms-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 6%;
    justify-content: space-between;
}

.terms-side-column {
    flex: 1;
    width: 47%;
    box-sizing: border-box;
}


.terms-main-title-en, 
.terms-main-title-bn {
    font-family: 'Cabin', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 35px;
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}


.terms-main-title-bn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 240px;
    width: 80px;
    height: 3px;
    background-color: #f35252;
}


.terms-ordered-list-en {
    padding-left: 20px;
    margin: 0;
}

.terms-ordered-list-en li {
    font-family: 'Rokkitt', serif;
    font-size: 17px;
    color: #111111;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

/* Right Column System: 21px Cabin */
.terms-ordered-list-bn {
    padding-left: 20px;
    margin: 0;
}

.terms-ordered-list-bn li {
    font-family: 'Cabin', sans-serif;
    font-size: 21px;
    color: #111111;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}
















/* --- About us page  --- */
.what-we-do-section {
    padding: 80px 7%;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.wwd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


.wwd-left {
    flex: 1;
    width: 100%;
}

.wwd-image-box {
    width: 100%;
    overflow: hidden;
}

.wwd-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.wwd-right {
    flex: 1.3;
    display: flex;
    flex-direction: column;
}

.wwd-sub-title {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    color: #f35252;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.wwd-main-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    color: #000000;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 0;
}

.wwd-desc {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-top: 0;
}


.wwd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 25px;
}

.wwd-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}


.wwd-icon-box {
    width: 55px;
    height: 55px;
    background-color: #f35252;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

.wwd-icon-box i {
    color: #ffffff;
    font-size: 24px;
}


.wwd-text-box h3 {
    font-family: 'Biryani', sans-serif;
    font-size: 20px;
    color: #000000;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.wwd-text-box p {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.4;
    margin: 0;
}
.webli-features-section {
    width: 100%;
    padding: 80px 5%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}


.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    box-sizing: border-box;
    min-height: 380px;
    justify-content: center;
}


.feature-card.featured-highlight {
    background-color: #a4bfff;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 420px;
    padding: 40px;
}


.feature-icon-box {
    width: 65px;
    height: 65px;
    border: 2px solid #f35252;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background-color: #ffffff;
}

.feature-icon-box i {
    color: #f35252;
    font-size: 32px;
}


.feature-icon-box.circle-icon {
    border-radius: 50%;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #f35252;
    width: 55px;
    height: 55px;
}

.feature-icon-box.circle-icon i {
    font-size: 26px;
}

.feature-title {
    font-family: 'Biryani', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
    max-width: 280px;
}


.feature-text {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 15px;
    color: #111111;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}



.webli-availability-section {
    width: 100%;
    background-color: #00307a;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin:20px 0px;
}

.availability-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
}

.availability-content-side {
    flex: 1.1;
    padding: 80px 5% 80px 8%;
    color: #ffffff;
    box-sizing: border-box;
}


.availability-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.5px;
}


.availability-desc {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 45px;
    max-width: 600px;
}


.availability-search-form {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 4px;
    max-width: 520px;
    width: 100%;
    box-sizing: border-box;
}

.availability-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 25px;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.availability-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.availability-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    outline: none;
    padding: 14px 30px;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.availability-btn:hover {
    background-color: #f1f1f1;
}


.availability-graphic-side {
    flex: 0.9;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
    box-sizing: border-box;
    position: relative;
}


.graphic-border-frame {
    border: 12px solid #002257;
    background-color: #ffffff;
    padding: 15px;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

































/* Contact us page */

/* Import Google Fonts Matrix */


.webli-premium-contact-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.premium-contact-wrapper {
    width: 100%;
    max-width: 1360px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}


.premium-content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 50px;
    box-sizing: border-box;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background-color: #00307a;

}

.premium-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.premium-main-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}

.premium-intro-block {
    margin-bottom: 35px;
}

.premium-sub-title {
    font-family: 'Georama', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}


.premium-desc-text {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


.contact-channels-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.channel-icon i {
    color: #ffffff;
    font-size: 14px;
}

.channel-data {
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}


.premium-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-field-row {
    display: flex;
    gap: 25px;
}

.premium-field-group {
    position: relative;
    flex: 1;
}

.premium-input-element {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.premium-textarea {
    resize: none;
}

/* Modern Label Animation Engine */
.premium-floating-label {
    position: absolute;
    left: 0;
    top: 12px;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: 0.3s ease all;
}

.premium-input-element:focus ~ .premium-floating-label,
.premium-input-element:not(:placeholder-shown) ~ .premium-floating-label {
    top: -16px;
    font-size: 13px;
    color: #ffffff;
    font-weight: bold;
}

.premium-input-element:focus {
    border-color: #ffffff;
}


.premium-action-btn {
    align-self: flex-start;
    background-color: #ffffff;
    color: #00307a;
    border: none;
    outline: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-family: 'Tahoma', Geneva, sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-action-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.premium-action-btn i {
    transition: transform 0.2s ease;
}

.premium-action-btn:hover i {
    transform: translateX(5px);
}


.premium-map-frame-box {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.map-inner-shadow-container {
    width: 100%;
    height: 100%;
    min-height: 550px;
    background-color: #e5e3df;
}



/* Offers page /////////////// */


.webli-offers-page {
    width: 100%;
    background-color: #ffffff; 
    padding: 100px 4%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.offers-page-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}


.offers-hero-header {
    text-align: center;
    color: #000000;
}

.promo-badge {
    background-color: rgb(0 48 122);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Tahoma', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
}


.offers-main-title {
    font-family: 'Georama', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}


.offers-hero-sub {
    font-family: 'Tahoma', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.85);
    max-width: 700px;
    margin: 0 auto;
}


.pricing-matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.price-card {
    /* background: rgba(255, 255, 255, 0.04); */
    background-color: rgb(0 48 122);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.popular-plan {
    /* background: rgba(255, 255, 255, 0.08); */
     background-color: rgb(0 48 122);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffffff;
    color: #00307a;
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 12px;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.price-header h3 {
    font-family: 'Georama', sans-serif;
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.price-amount {
    font-family: 'Georama', sans-serif;
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.validity-tag {
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.plan-action-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1.5px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.featured-btn {
    background: #ffffff;
    color: #00307a;
    border: none;
}

.featured-btn:hover {
    background: #f1f1f1;
}


.network-info-glass-panel {
    /* background: rgba(255, 255, 255, 0.03); */
    background-color: rgb(0 48 122);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.info-content-left h2 {
    font-family: 'Georama', sans-serif;
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.info-content-left p {
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 750px;
}

.support-badge-right {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 16px;
    min-width: 280px;
}

.support-icon-box i {
    font-size: 32px;
    color: #ffffff;
}

.support-badge-right h4 {
    font-family: 'Georama', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.support-badge-right p {
    font-family: 'Tahoma', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


.services-wrapper-section {
    text-align: center;
}

.section-micro-title {
    font-family: 'Georama', sans-serif;
    font-size: 24px;
    color: #000000;
    margin-bottom: 30px;
}

.services-grid-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-item-card {
    /* background: rgba(255, 255, 255, 0.05); */
    
    background: rgb(0 48 122);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 28px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.service-item-card i {
    font-size: 14px;
    opacity: 0.8;
}


.offers-footer-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.subscribe-glass-box {
    /* background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%); */
    background: linear-gradient(90deg,rgb(5 52 125) 0%, rgb(0 48 122) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.subscribe-glass-box h4 {
    font-family: 'Georama', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin: 0;
}

.footer-sub-form {
    display: flex;
    max-width: 480px;
    width: 100%;
    border-bottom: 2px solid #ffffff;
}

.footer-sub-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-size: 16px;
}

.footer-sub-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-sub-form button {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    padding-left: 15px;
}

.contact-details-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Tahoma', sans-serif;
    font-size: 15px;
}

.contact-meta-item i {
    font-size: 16px;
    color: #000000;
}


