


/*** 	 01. Global Variables	  ***/
:root{
	--primary-color			: #1A3B5D;
	--secondary-color		: #F5F5F6;
	--text-color			: #101010;
	--accent-color			: #6DB462;
	--white-color			: #FFFFFF;
	--dark-color		    : #0A233C;
    --light-color			: #224365;
    --bg-color              : #EAEAEA;
	--red-color			    : #D93030;
    --orange-color          : #D96B30;
    --line-color            : rgba(0, 0, 0, 0.02);
	--default-font			: "Poppins", sans-serif;
}

/*** 	   02. General css		  ***/
body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.7em;
	margin: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.btn-default{
	position: relative;
	display: inline-block;
    background-color: var(--accent-color);
    background-size: 200% auto;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
	line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 17px 24px;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover{
	background-position: right center;
}

.cb-cursor:before{
	background:linear-gradient(263deg, var(--primary-color) 0.16%, var(--dark-color) 99.84%);
}

 /* Base button reset */
.btn1,
.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 220px;
}

/* Primary Button */
.btn1 {
  background-color: #1f3a5f; /* deep blue */
  color: #ffffff;
  border: none;
}

.btn1:hover {
  background-color: #172f4d;
  transform: translateY(-1px);
}

/* Secondary Button */
.btn2 {
  background-color: transparent;
  color: #4fd18b; /* green */
  border: 1.5px solid #4fd18b;
}

.btn2:hover {
  background-color: rgba(79, 209, 139, 0.08);
  transform: translateY(-1px);
}


.preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(263deg, var(--primary-color) 0.16%, var(--dark-color) 99.84%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1700;
  transition: opacity 0.6s ease;
}

.dot-loader {
  display: flex;
  gap: 12px;
}

.dot-loader span {
  width: 16px;
  height: 16px;
  background: var(--white-color);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1s ease-in-out infinite;
}

.dot-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.dot-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}


.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	font-size: 15px;
    font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0em;
    text-transform: uppercase;
    color: var(--accent-color);
	background-size: auto;
	padding-left: 24px;
    margin-bottom: 20px;
}

.section-title h1{
	font-size: 50px;
	font-weight: 600;
	line-height: 100%;
	color: var(--primary-color);
	margin-bottom: 0;
    font-family: var(--default-font);
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.section-title h2{
	font-size: 40px;
	font-weight: 500;
	line-height: 100%;
	color: var(--text-color);
	margin-bottom: 0;
}

.section-title h1 span{
    font-family: var(--default-font);
    font-weight: 700;
    color: var(--accent-color);
}

/**** 	   03. Header css		 ****/

header.main-header {
    position: relative;
    /* z-index: 1500; */
    /* background: var(--white-color); */
    margin: 20px ;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

header.main-header.sticky {
    position: sticky;
    top: 13px;
    background: var(--white-color);
    z-index: 1500;
    height: fit-content;
    padding: 23px, 20px;
    margin: 20px ;
    border-radius: 150px;
    box-shadow:  0 0 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: fadeInSticky 0.3s ease forwards;
}

.navbar{
	width: 100%;
	max-width: 1425px;
	padding: 5px 5px;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex:1;
	text-align: left;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 700;
	padding: 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--dark-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: linear-gradient(263deg, var(--primary-color) 0.16%, var(--dark-color) 99.84%);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn{
    align-items: center;
    gap: 10px;
}

.header-btn1 {
	position: relative;
	display: inline-block;
    background-color: var(--primary-color);
    background-size: 200% auto;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
	line-height: 1em;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    border: none;
    padding: 13px 24px;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.header-btn1:hover{
	color: var(--primary-color);
    background-color: var(--secondary-color);
}

.header-btn2 {
	position: relative;
	display: inline-block;
    background-color: var(--white-color);
    background-size: 200% auto;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
	line-height: 1em;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
    padding: 13px 24px;
    transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.header-btn2:hover {
	color: var(--white-color);
    background-color: var(--primary-color);
}

/**** 	   04. Hero css		 ****/
/* HERO STATS SECTION */
.hero-stats {
  padding: 60px 20px;
  
}

.hero-stats .d-flex.flex-column {
  align-items: center;
  text-align: center;
  min-width: 180px;
}

/* Icons */
.hero-stats img {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}

/* Numbers */
.hero-stats span {
  font-size: 40px;
  font-weight: 700;
  color: #1f3a5f;
  line-height: 1.2;
}

/* Labels */
.hero-stats .d-flex.flex-column div:last-child {
  font-size: 15px;
  color: #7b8ca5;
  margin-top: 6px;
}

/* Spacing between items */
.hero-stats .gap-5 {
  gap: 10% !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-stats .gap-5 {
    gap: 40px !important;
    flex-wrap: wrap;
  }

  .hero-stats span {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-stats .d-flex.flex-column {
    min-width: 140px;
  }

  .hero-stats span {
    font-size: 28px;
  }

  .hero-stats img {
    width: 24px;
    height: 24px;
  }
}

.hero-section{
    position: relative;
    margin-top: 10px;
    background-image: repeating-linear-gradient(
    to right,
    var(--line-color) 0px,
    var(--line-color) 1px,
    transparent 1px,
    transparent 80px
  );
}

.hero-section .hero-header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* background-color: var(--bg-color); */
    /* border-radius: 100px; */
    width: fit-content;
    padding: 4px 10px;
    font-size: 15px;
    font-family: var(--default-font);
}
.hero-section .hero-header .hero-icon{
    width: 40px;
    height: 40px;
    /* background-color: var(--white-color); */
    /* border-radius: 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 2px;
    font-size: 20px;
}

.private{
    color: #666666FC;
}
.hero-icon{
    cursor: pointer;
    transition: background 0.3s ease;
}

/**** 	   05. Choose Your Path css		 ****/
.choose-your-path{
    /* background-color: var(--white-color);   */
    padding: 100px;
}

.choose-your-path .container{
    /* background-color: var(--white-color);
    box-shadow:  0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 60px; */
}


/**** 	   06. how it works css		 ****/
.how-it-works-section {
    padding: 5rem 0;
    background: #f8fffe;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #f8fffe;
    border: 1px solid #E0E0E0;
}

.step-number  {
    width: 60px;
    height: 60px;
     background:  #1e3a5f; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}



.step-text {
    color: #6B7280;
    line-height: 1.6;
}

/**** 	   07. Everything you need css		 ****/
.everything-you-need{
    background-color: var(--white-color);  
    padding: 100px;
}

.everything-you-need .container{
    background-color: var(--white-color);
    box-shadow:  0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: center;
}

.everything-you-need .download-btn{
    display: flex;
    justify-content: left;
}

/**** 	   07. Testimonial css		 ****/
.testimonial{
    background-color: var(--white-color);  
    padding: 100px;
}

.testimonial h2{
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
}
.testimonial .private{
    font-family: var(--default-font);
    font-weight: 400;
    line-height: 100%;
    text-align: center;
}

.testimonial-outer-wrapper {
  position: relative;
  width: 700px;
  height: 280px;
  margin: 100px auto;
}

.quote-icon {
  position: absolute;
  top: -26px;
  left: 40%;
  transform: translateX(-50%);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon img {
    width: 24px;
    height: 24px;
    font-weight: bold;
    color: #0f2d4c;
    line-height: 1;
}

.testimonial-cards {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    will-change: transform, opacity;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #0f2d4c;
    color: white;
    display: flex;
    animation: layeredCardFade 9s infinite;
    transition: all 0.3s ease;
}

.testimonial-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonial-card .text-section {
    padding: 1.5rem;
    position: relative;
}
.testimonial-card p {
    margin-top: 2rem;
}

.testimonial-card h6 {
    margin-top: 1rem;
}
/* Stagger cards */
.card1 {
  animation: layeredCardFade 9s infinite ease-in-out;
  animation-delay: 0s;
  z-index: 3;
}
.card2 {
  animation: layeredCardFade 9s infinite ease-in-out;
  animation-delay: 3s;
    z-index: 2;
}
.card3 {
  animation: layeredCardFade 9s infinite ease-in-out;
  animation-delay: 6s;
    z-index: 1;
}

/**** 	   08. CTA css	     ****/
/* .cta-section{
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-section .container{
    background-color: var(--primary-color);
    box-shadow:  0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: center;
}
.cta-section h2{
    font-family: var(--default-font);
    font-weight: 500;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: var(--white-color);
}
.cta-section p{
    font-family: var(--default-font);
    font-weight: 100;
    font-size: 12px;
    color: var(--secondary-color);
}
.cta-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-section .btn-default{
    padding: 15px 60px;
    border-radius: 100px;
} */
/* Arcs */
.curve {
    position: absolute;
    width: 500px;
    height: 500px;
    background: transparent;
    pointer-events: none;
    z-index: 100;
}
.curve-top-right {
  top: 100px;
  right: -50px;
  transform: rotate(0deg);
}
.curve-bottom-left {
  bottom: -195px;
  left:110px;
  transform: rotate(0deg);
}
/* Default for large screens */
.curve-top-right {
  top: 100px;
  right: -50px;
}

.curve-bottom-left {
  bottom: -195px;
  left: 110px;
}



/**** 	   09. Footer css	     ****/
.footer{
    background-color: var(--white-color);
    padding: 60px 0;
}
.footer .container{
   
}
.footer h6{
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: left;
    color: var(--primary-color);
}
.footer-links ul li{
    /* text-align: left; */
}
.footer-links ul li a{
    color: #9E9E9E;
}




        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #2C3E50;
            /* overflow-x: hidden; */
        }

       
      
        .btn-get-started {
            background: #1e3a5f;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-get-started:hover {
            background: #152d4a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
        }

        .btn-login {
            color: #1e3a5f;
            padding: 0.6rem 1.5rem;
            border: 2px solid #1e3a5f;
            border-radius: 6px;
            font-weight: 600;
            margin-left: 1rem;
            background: white;
            transition: all 0.3s;
        }

        .btn-login:hover {
            background: #1e3a5f;
            color: white;
        }

        .btn-primary-cta {
            background: #1e3a5f;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-primary-cta:hover {
            background: #152d4a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
        }

        .btn-secondary-cta {
            background: transparent;
            color: #7AD196;
            padding: 1rem 2rem;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-left: 1rem;
            transition: all 0.3s;
        }

        .btn-secondary-cta:hover {
            color: #7AD196;
        }

        .hero-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .hero-icon-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .hero-icon-item i {
            color: #7AD196;
        }

        /* Stats Section */
        .stats-section {
            padding: 3rem 0;
            background: white;
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-icon {
            color: #7AD196;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6B7280;
            font-size: 0.95rem;
        }

        /* Who Is BetControl For */
        .for-section {
            padding: 5rem 0;
            background: #f8fffe;
        }

        .section-label {
            color: #7AD196;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .section-title {
            /* font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 1rem; */
        }

        .section-subtitle {
            color: #6B7280;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .for-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .for-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem;
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .for-option:hover,
        .for-option.active {
            border-color: #7AD196;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
        }

        .for-option-icon {
            width: 45px;
            height: 45px;
            background: #e8f5e9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7AD196;
            font-size: 1.3rem;
        }

        .for-option-text {
            font-weight: 600;
            color: #1e3a5f;
        }

        .bettor-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .bettor-icon {
            width: 60px;
            height: 60px;
            background: #e8f5e9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7AD196;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .bettor-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .bettor-text {
            color: #6B7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .btn-success-custom {
            background: #7AD196;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
        }

        .btn-success-custom:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }

        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background: white;
        }

        .feature-card {
            padding: 2rem;
            background: #f8fffe;
            border-radius: 15px;
            margin-bottom: 2rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: #e8f5e9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7AD196;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 0.8rem;
        }

        .feature-text {
            color: #6B7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding: 5rem 0;
            background: #1e3a5f;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: #7AD196;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-title {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 5rem 0;
            background: #f8fffe;
        }

        .step-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #1e3a5f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .step-text {
            color: #6B7280;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e3a5f 0%, #152d4a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
        }

        .cta-section::before {
            top: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
        }

        .cta-section::after {
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-cta-green {
            background: #7AD196;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-cta-green:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        /* Footer */
        .footer {
            padding: 4rem 0 2rem;
            background: white;
            border-top: 1px solid #e5e7eb;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.3rem;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .footer-brand i {
            color: #7AD196;
            font-size: 1.5rem;
        }

        .footer-text {
            color: #6B7280;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-title {
            font-weight: 700;
            color: #1e3a5f;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #6B7280;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #7AD196;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3a5f;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #7AD196;
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid #e5e7eb;
            color: #6B7280;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn-secondary-cta {
                margin-left: 0;
                margin-top: 1rem;
            }

            .hero-icons {
                flex-direction: column;
            }

            .testimonial-text {
                font-size: 1.2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }


/* ===============================
   OFFCANVAS BASE
================================= */
.offcanvas {
    background: linear-gradient(180deg, #0F2B46 0%, #1A3B5D 100%);
    color: #ffffff;
    padding: 30px 25px;
    width: 320px !important;
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}

/* Header */
.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.offcanvas-title img {
    max-width: 140px;
}

/* Close Button */
.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* ===============================
   NAVIGATION LINKS
================================= */

.mobile-nav-menu {
    margin-top: 25px;
}

.mobile-nav-item {
    margin-bottom: 18px;
}

.mobile-nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 18px;
}

/* Chevron animation */
.mobile-nav-link i {
    transition: transform 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-nav-sublink {
    display: block;
    font-size: 15px;
    padding: 8px 10px;
    margin-top: 5px;
    border-radius: 6px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-sublink:hover {
    background: rgba(255,255,255,0.06);
    padding-left: 15px;
    color: #ffffff;
}

/* ===============================
   ACTION BUTTONS
================================= */

.mobile-action-buttons {
    margin-top: 35px;
}

/* Primary Button */
.mobile-btn-primary {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background: #ffffff;
    color: #1A3B5D;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.mobile-btn-primary:hover {
    background: #e6e6e6;
    transform: translateY(-2px);
}

/* Secondary Button */
.mobile-btn-secondary {
    width: 100%;
    height: 55px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ===============================
   SOCIAL ICONS
================================= */

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #1A3B5D;
    transform: translateY(-3px);
}

/* ===============================
   HELP SECTION
================================= */

.offcanvas .border-top {
    border-color: rgba(255,255,255,0.1) !important;
}

.offcanvas .text-muted {
    color: rgba(255,255,255,0.6) !important;
}

.offcanvas a.text-primary {
    color: #ffffff !important;
    font-weight: 500;
}

.offcanvas a.text-primary:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 500px) {
    .offcanvas {
        width: 100% !important;
    }
}