:root {
    --PrimaryColor: #B76D11;
    --WhiteColor: #fff;
    --BlackColor: #000;
    --LightGrayColor: #ECECEC;
    --heading-text: #262626;

}

html {
    font-size: 16px;
}
html,
body {
    scroll-behavior: smooth; overflow-x: hidden;
}
@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraLight.eot");
    src: url("../fonts/Inter24pt-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraLight.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraLight.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Bold.eot");
    src: url("../fonts/Inter24pt-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Bold.woff2") format("woff2"), url("../fonts/Inter24pt-Bold.woff") format("woff"), url("../fonts/Inter24pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Regular.eot");
    src: url("../fonts/Inter24pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Regular.woff2") format("woff2"), url("../fonts/Inter24pt-Regular.woff") format("woff"),
        url("../fonts/Inter24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Thin.eot");
    src: url("../fonts/Inter24pt-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Thin.woff2") format("woff2"), url("../fonts/Inter24pt-Thin.woff") format("woff"), url("../fonts/Inter24pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Light.eot");
    src: url("../fonts/Inter24pt-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Light.woff2") format("woff2"), url("../fonts/Inter24pt-Light.woff") format("woff"),
        url("../fonts/Inter24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Black.eot");
    src: url("../fonts/Inter24pt-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Black.woff2") format("woff2"), url("../fonts/Inter24pt-Black.woff") format("woff"),
        url("../fonts/Inter24pt-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraBold.eot");
    src: url("../fonts/Inter24pt-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraBold.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraBold.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-SemiBold.eot");
    src: url("../fonts/Inter24pt-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter24pt-SemiBold.woff") format("woff"),
        url("../fonts/Inter24pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Medium.eot");
    src: url("../fonts/Inter24pt-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Medium.woff2") format("woff2"), url("../fonts/Inter24pt-Medium.woff") format("woff"),
        url("../fonts/Inter24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    color: #3a3a3a;
    font-family: "Inter 24pt";
    font-weight: 400;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bg-soft {
    background: #F8F8F8;
}

.btn {
        font-size: 1rem;
        padding: 0.6rem 1.4rem;
        border-radius: 50px;
        line-height: 1.25rem;
        font-weight: 600;
        transition: all 0.2s ease; 
        display: inline-flex;
        align-items: center;
        gap: 0.7rem; text-align: center; justify-content: center;
}
.btn svg{
    width: 1.2rem;
}
.btn:hover,
.btn:focus,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: var(--BlackColor);
    background: linear-gradient(to left, #E7AC18 , #B46A11);
    border-color: #E7AC18;
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
  color: var(--BlackColor);
  background: linear-gradient(to right, #E7AC18 , #B46A11);
     border-color: #E7AC18 !important;

}

.btn-black {
    color:var(--WhiteColor);
    background: var(--BlackColor);
    border-color: var(--BlackColor);
}


.btn-black:hover,
.btn-black:focus,
.btn-black.active {
   color: var(--BlackColor) !important;
    background: var(--WhiteColor)!important;
    border-color: var(--WhiteColor)!important;
 
}

.btn-white {
    color:var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}


.btn-white:hover,
.btn-white:focus,
.btn-white.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor)!important;
 
}

.btn-outline-primary {
    color:var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor) !important;
 
}





.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}
.same-heading {margin-bottom: 4rem;}
.same-heading h2 {
    color: var(--PrimaryColor);
    font-size: 2rem;
    font-weight: 600;
    line-height:115%; margin-bottom: 1rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4; margin-bottom: 0.6rem;
}

.same-heading p {
     color: #161616;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.same-heading .primary-text {font-size: 0.8rem; font-weight: 400; text-transform: uppercase; line-height: 1.2; margin-bottom: 0.5rem;}

.bg-gray{background: #F4F4F4;}

.max-wid-50{width: 100%; max-width: 60%;}
.same-heading.text-center .max-wid-50{margin:0 auto;}
.same-heading.white-text :is(p) {color: var(--WhiteColor);}

.same-section .section-bottom-btn{margin-top: 1.5rem;}
.section-bottom-btn{display: flex; gap: 1rem; align-items: center; }
.section-bottom-btn.text-center{justify-content: center;}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 0.8rem 0; background: #fff;  position: relative;  transition: all 0.3s ease; z-index: 99; position: relative;}
.header .navbar{padding: 0; }
.header .navbar .navbar-brand img{max-height: 65px; }
.header .navbar  .nav {gap: 2rem;}
.header .navbar  .nav-link{position: relative; color: #000000; font-size: 0.9rem; font-weight: 500; padding: 0.2rem 0.4rem; transform: all .2s ease; }
.header .navbar .nav-link::before{content: ""; position: absolute; left: 0;right: 0; bottom: -1px; width: 0%; margin: 0 auto; height: 2px; background-color: var(--PrimaryColor); transition: width 0.3s ease;}
.header .navbar-brand {padding: 0;}
.header .navbar  .nav-link:hover{color: var(--PrimaryColor);}
.header .navbar  .nav-link:hover:before{width: 100%;}
.header .navbar  .nav-link.active { color:var(--PrimaryColor)}
.header .navbar  .nav-link.active:before{width: 100%;}
.header.headerFix { position: fixed; top: 0; left: 0; width: 100%;  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08); z-index: 9999;animation:headerfixdown 0.7s; } 
.header.headerFix .navbar-brand img{    max-height: 48px;}

@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}

.mobile-menu-toggle { background: var(--PrimaryColor); color: var(--WhiteColor); width: 2.4rem; height: 2.4rem; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;  display: none;}
.mobile-menu-toggle svg{width: 1.2rem; color: var(--WhiteColor);}

/*  header css */
.body-overlay.active{display: block;}
.mobile-sidemenu{position: fixed; top: 0; right: -100%; width: 17rem; height: 100%; background: var(--WhiteColor); box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2); transition: right 0.3s ease; padding: 1rem; z-index: 9999; gap: 1rem;}
.mobile-sidemenu .close-sidebarmenu{background: var(--PrimaryColor); color: var(--WhiteColor); width: 2.4rem; height: 2.4rem;display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;}
.mobile-sidemenu .close-sidebarmenu svg{width: 1rem; color: var(--WhiteColor);}
.mobile-sidemenu a:not(.btn-outline-primary){ color: var(--BlackColor); font-size: 1rem; font-weight: 400;}
.mobile-sidemenu.active {right: 0;}



.body-overlay{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1050; display: none;}
.primary-text{color: var(--PrimaryColor);}


.hero-banner{background: url(../images/banner-bg.jpg)no-repeat center top/cover; padding: 3rem 0; min-height: calc(100vh - 6rem);}
.hero-banner .banner-content h1{font-size:2.2rem; color:#B76D11; font-weight: 600; line-height: normal;}
.hero-banner .banner-content .tp-heading-sub{font-size:1.4rem; color:#303030; font-weight: 600; line-height: normal;}
.hero-banner .banner-content .tp-text{color: #535050; font-size: 0.9rem; line-height: 1.6;}
.hero-banner .banner-content .tp-text strong{font-weight: 600;  font-size: 0.98rem; }

.hero-banner .banner-content .banner-buttons{margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;}
.check-list li{font-size: 0.9rem; color: #000000; padding: 0.5rem 0 0.5rem 2.5rem; position: relative;}
.check-list li .check-icon{color: var(--PrimaryColor); position: absolute; left: 0; top: 7px;}
.product-card-section .product-card { background: #F6F6F6; text-align: center; border: 1px solid #F6F6F6; padding: 2rem 1rem 0; position: relative; overflow: hidden; min-height: 100%; display: flex; flex-direction: column; justify-content: space-between; } 

.product-card-section .product-card h4 { font-size: 1.3rem; font-weight: 700; margin: 0; color: var(--BlackColor); }
.product-card-section .product-card .product-price {display: flex; align-items: center; justify-content: center; margin: 0.8rem 0; }


.product-card-section .product-card .product-price .price-current { font-size: 1.6rem; font-weight: 500; color: var(--BlackColor);  margin-right: 0.5rem;} 
.product-card-section .product-card .product-price .price-current small { font-size: 1rem; top: -6px; position: relative; left: -2px;} 
.product-card-section .product-card .product-price .price-old { font-size: 1rem; color: #848484; text-decoration: line-through; }
.product-card-section .product-card  .card-btn{ display: flex; align-items: center; justify-content: center; gap: 1rem ; margin: 0 0 2rem 0;}
.product-card-section .product-card  .card-btn .learn-more { font-size: 1rem; color: var(--BlackColor); text-decoration: none; font-weight: 500;}
.product-card-section .product-card  .card-btn .btn-primary {color: var(--WhiteColor); font-weight: 500;}


.digital-life-section{background:#000; padding: 2rem 0;}
.digital-life-section .check-list li{color: #fff;}
.digital-life-section .same-heading h4{ font-size: 1.4rem; font-weight: 500; color: #ffffff; margin-bottom: 1.5rem; line-height: 1.6;}
.digital-life-section .same-heading p{color: #ffffffb5;}


.icon-card{background: #F7F7F7; border-radius:1rem; padding: 1rem;}
.icon-card .icon-bx{width: 100%; max-width: 3rem; margin-bottom:1rem ;}
.icon-card h3{ font-size: 1.4rem; font-weight: 600; color: var(--BlackColor);}
.icon-card p{color: #545454; font-size: 0.9rem; font-weight: 400; line-height: 1.6; margin-bottom: 0;}

.switching-phone-wrap .specs-ul { list-style: none; padding: 0; margin: 0; }

.switching-phone-wrap .specs-ul li { margin: 1.5rem 0; } 
.switching-phone-wrap .specs-ul li h4 { font-size: 1.1rem; font-weight: 600; color: var(--BlackColor); margin: 0 0 0.3rem 0; }

.switching-phone-wrap .specs-ul li p { font-size: 0.9rem; color: #4A4A4A; margin: 0; line-height: 1.6; }


.plan-section{background: var(--BlackColor); }
.plan-section h2 {color: #FFFFFF;} 
.plan-section h3 { font-size: 1.05rem; font-weight: 400; color: #FFFFFF; margin: 0 0 1.3rem 0; } 
.plan-section .plan-price {
  margin-bottom: 1.0rem;
}

.plan-section .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #E7AC18;
}
.plan-section .price-amount small{font-size: 1.2rem; top: -10px; left: -3px; position: relative;}
.plan-section .price-period {
  font-size: 1.05rem;
  font-weight: 600;
  margin-left: 0.25rem;
  color: #E7AC18;
}

.plan-section .plan-note { font-size: 0.9rem; color: #636363; margin: 1.2rem 0; } 
.plan-section .check-list li {color: var(--WhiteColor); } 


.check-compatibility-section{background: url(../images/keep-phone-bg.jpg)no-repeat top center/cover; min-height: 500px; display: flex; align-items: center; justify-content: center;}
.check-compatibility-section .same-heading {width: 100%; max-width: 80%; margin: auto;}
.check-compatibility-section .same-heading h2{color: var(--BlackColor);}



.trump-life-wrap .social-icon-list{display: flex; margin-top: 2rem;gap: 0.5rem;  list-style: none;} 
.trump-life-wrap .social-icon-list li a{width: 3.3rem; height: 3.3rem; border: 1px solid #E7AC18; border-radius: 1rem; display: flex; align-items: center; justify-content: center;} 
.trump-life-wrap .social-icon-list li img{width: 1.3rem;} 


.footer {background: #000; }
.footer .footer-top-section{padding: 3.5rem 0 2rem; }
.footer .footer-top-section .footer-logo{display: block;}
.footer .footer-top-section h4{color: var(--WhiteColor); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem;}
.footer .footer-top-section .footer-menu{gap: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.footer .footer-top-section .footer-menu a{color: #E3E3E3; font-size: 0.9rem; font-weight: 400;}
.footer .footer-top-section .footer-menu a:hover{color:var(--PrimaryColor);}
.footer .footer-logo-bx{margin-bottom: 2rem; display: block;}


.footer .copyright {border-top: solid 1px #e3e3e338; padding:1.4rem 0;}
.footer .copyright p{color: #e8e8e87d; font-size: 0.9rem; margin-bottom: 0;}
.footer .copyright p sup{top: -1.4em; font-size: 40%;}
.footer .copyright p a{color: #e8e8e87d; font-size: 0.9rem;}



.inner-banner{background: #ebe6e0; padding: 5rem 0;  }
.inner-banner .banner-title h1{ color: var(--PrimaryColor); font-size: 2rem; font-weight: 600; line-height: 115%; margin-bottom: 0;}

.coverage-slider {
  max-width: 100%;
}

.coverage-slider .main-map img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #ddd;
}

.coverage-slider .map-thumbnails {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;    justify-content: space-between;
}

.coverage-slider .map-thumbnails img {
  width: 17%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.coverage-slider .map-thumbnails img.active {
  border-color: var(--PrimaryColor); 
}


.form-card {background: #ebe6e0; padding: 2rem 1rem; border-radius: 1rem;}
.form-card h3{color: var(--BlackColor); font-size: 1.6rem; font-weight: 600; line-height: 115%; margin-bottom: 1rem;}
.form-card .form-group {margin-bottom: 1.2rem;}
.form-card .form-group .form-label { color: #161616; font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem;}
.form-card .form-group .form-label input:focus{border-color: var(--PrimaryColor) !important;  box-shadow: none !important;}