/* =========================================================
   Reset and Base Styles
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: right; /* Ensures text starts from the right for RTL */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* =========================================================
   Theme Variables
   ========================================================= */
:root {
    /* Light Theme Variables */
    --bg-color: #f5f5f5;
    --text-color: #333333;
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-text: #333333;
	--button-bg: linear-gradient(45deg, #64ae02, #5ea107);
    --button-hover-bg: linear-gradient(45deg, #013cb8, #00d8ff);
    --footer-bg: #e0e0e0;
    --footer-text: #121212;
    --social-hover: #013cb8;
    --scroll-btn-bg: #ff7f50;
    --scroll-btn-hover-bg: #ff6347;
	--hover-color: #64ae02; /* Light theme hover color */
	--accent-color: #013cb8; /* Light theme accent color */

    /* Hero Section Variables */
    --hero-bg: #ffffff;
    --hero-text: #333333;
    --hero-title-color: #00d8ff; /* Bright blue for titles */
    --hero-subtitle-color: #333333;
    --hero-description-color: #666666;
    --country-bg: #f0f0f0;
    --country-inner-bg: #ffffff;
    --search-box-bg: #f1f1f1;
    --search-box-text: #262626;
	--search-box-arrow: #262626;
    --hero-bg-color: ffffff;
    --hero-bg-shadow: rgb(94 161 7 / 29%) 0px 0px 20px 2px;

    /* Section Variables */
    --section-bg: #ffffff;
    --section-text: #333333;
    --section-border: #e0e0e0;
    --section-overlay-bg: 	linear-gradient(45deg, rgb(255 255 255 / 96%), rgb(255 255 255 / 96%)); /* White overlay with 50% transparency */
	--section-feature-bg: url('https://lp.gsm2go.com/images/3.jpg');

	
	
	/* feature  Section Variables */	
	--feature-inner-bg: #ffffff;
    --feature-border-color: #003dbd;
	
	    /* New Variables */
    --primary-color: #00d8ff; /* Vibrant cyan accent color */
    --secondary-color: #ffffff; /* White for text */
    --background-gradient: linear-gradient(135deg, #ffffff, #f5f5f5); /* Light gradient */
    --card-bg: #f9f9f9; /* Light card background */
    --card-hover-bg: #f9f9f9; /* Slightly darker on hover */
    --card-shadow: 0px 0px 2px rgb(94 161 7); /* Light shadow */
    --button-bg: #00d8ff; /* Cyan button color */
    --button-hover-bg: #00b8d1; /* Darker cyan on hover */
    --subtitle-color: #666666; /* Light grey for subtitles */
    --transition-speed: 0.3s; /* Transition speed for hover effects */
	
}
 
/* Dark Theme Overrides */
body.dark-theme {
    /* Dark Theme Variables */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --header-bg: rgba(18, 18, 18, 0.9);
    --header-text: #e0e0e0;
--button-bg: linear-gradient(45deg, #64ae02, #5ea107);
    --button-hover-bg: linear-gradient(45deg, #013cb8, #00d8ff);
    --footer-bg: #121212;
    --footer-text: #e0e0e0;
    --social-hover: #013cb8;
    --scroll-btn-bg: #ff7f50;
    --scroll-btn-hover-bg: #ff6347;
	--hover-color: #3399ff; /* Dark theme hover color */
    --accent-color: #4e952a; /* Dark theme accent color */

    /* Hero Section Variables */
    --hero-bg: #121212;
    --hero-text: #e0e0e0;
    --hero-title-color: #00d8ff; /* Bright blue remains consistent */
    --hero-subtitle-color: #e0e0e0;
    --hero-description-color: #cccccc;
    --country-bg: #333333;
    --country-inner-bg: #1a1a1a;
    --search-box-bg: #121212;
    --search-box-text: #e0e0e0;
	--hero-bg-color: #333333;
    --hero-bg-shadow: rgb(0 216 255 / 21%) 0px 0px 20px 2px;
	--search-box-arrow: #f9f9f9;

    /* Section Variables */
    --section-bg: #1a1a1a;
    --section-text: #e0e0e0;
    --section-border: #333333;
	--section-overlay-bg: linear-gradient(45deg, rgb(18 18 18 / 96%), rgb(18 18 18 / 96%)); /* Black overlay with 50% transparency */
	--section-feature-bg: url('https://lp.gsm2go.com/images/3.jpg');

	/* feature  Section Variables */	
	--feature-inner-bg: #333333;
    --feature-border-color: #333333;
	
	 /* New Variables */
    --primary-color: #00d8ff; /* Vibrant cyan accent color */
    --secondary-color: #ffffff; /* White for text */
    --background-gradient: linear-gradient(135deg, #121212, #1a1a1a); /* Dark gradient */
    --card-bg: #121212; /* Dark card background */
    --card-hover-bg: #262936; /* Slightly lighter on hover */
    --card-shadow: 0px 0px 2px rgb(0 61 189); /* Dark shadow */
    --button-bg: #00d8ff; /* Cyan button color */
    --button-hover-bg: #00b8d1; /* Darker cyan on hover */
    --subtitle-color: #cccccc; /* Light grey for subtitles */
    --transition-speed: 0.3s; /* Transition speed for hover effects */
}

/* =========================================================
   Logo Styles
   ========================================================= */
.logo {
    width: 10%;
    cursor: pointer;
    transition: width 0.3s ease;
	margin-right: 40px;
}

/* =========================================================
   Header Styles
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--header-bg); /* Uses CSS variable */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    z-index: 1000;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 40px;
}

.header.scrolled .navlinks li a,
.header.scrolled .navlinks .theme-toggle button i {
    color: var(--header-text); /* Uses CSS variable */
}

.header .navlinks .theme-toggle button i {
    color: var(--header-text); /* Uses CSS variable */
}

/* =========================================================
   Navigation Links
   ========================================================= */
.navlinks {
    list-style: none;
    display: flex;
    align-items: center;
}

.navlinks li {
    margin-inline-end: 15px; /* Replaces margin-left for RTL */
}

.navlinks li a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--header-text); /* Uses CSS variable */
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navlinks li a:hover,
.navlinks li a.active {
    color: var(--social-hover);
    border-bottom: 2px solid var(--social-hover);
}

/* Header Button Styles */
.btn-header {
    background: linear-gradient(45deg, #003dbd, #64ae02); /* Uses CSS variable */
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
    transition: background 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff!important; /* White text color */
    font-weight: 600;
    font-size: 0.8rem !important;
}

.btn-header:hover {
    background: var(--button-hover-bg); /* Uses CSS variable */
    box-shadow: 0 4px 15px #003dbd;
	    color: #ffffff; /* White text color */

}

/* Remove default button focus outline and add custom focus styles */
.btn-header:focus {
    outline: 2px dashed var(--social-hover);
    outline-offset: 4px;
}

/* =========================================================
   Theme Toggle Button Styles
   ========================================================= */
.theme-toggle button {
    background: none;
    border: none;
    color: var(--header-text); /* Uses CSS variable */
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.theme-toggle button:hover {
    transform: scale(1.1);
}

/* FontAwesome Sun and Moon Icons */
.theme-toggle button .sun-icon,
.theme-toggle button .moon-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    color: #FFFFFF; /* White color for icons */
    font-size: 20px; /* Adjust size as needed */
}

.theme-toggle button .sun-icon {
    opacity: 1;
}

.theme-toggle button .moon-icon {
    opacity: 0;
}

body.dark-theme .theme-toggle button .sun-icon {
    opacity: 0;
}

body.dark-theme .theme-toggle button .moon-icon {
    opacity: 1;
}

/* =========================================================
   Sidebar Styles
   ========================================================= */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: var(--footer-bg); /* Consistent with footer section */
    backdrop-filter: blur(10px);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    padding: 30px 20px; /* Increased padding for better spacing */
    transition: transform 0.3s ease;
    transform: translateX(100%); /* Initially hidden */
}
ul.sidebar-menu {
    background: #1a1a1a;
    border-radius: 9px;
    padding: 20px 50px !important
}
.sidebar.show {
    display: flex;
    transform: translateX(0); /* Slide in */
}

.sidebar li {
    margin: 20px 0; /* Increased margin for better spacing */
	list-style: none;
}

.sidebar li a {
    color: var(--footer-text);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding: 10px 0;
    display: block;
}

.sidebar li a:hover,
.sidebar li a.active {
    color: var(--social-hover);
    border-bottom: 2px solid var(--social-hover);
}

.sidebar .close-btn {
    align-self: flex-end; /* Align close button to the left */
    margin-bottom: 30px; /* Space between close button and menu items */
	margin-top: -7%;
}

.sidebar .close-btn a {
    font-size: 24px; /* Increase size for better visibility */
    color: var(--footer-text);
}

.sidebar .close-btn a:hover {
    color: var(--social-hover);
}

.sidebar img {
    margin-top: auto;
    width: 45%;
    height: auto;
    align-self: center;
    position: absolute;
    top: 4%;
}

/* Remove bullet points from sidebar */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================================
   Hero Section Styles
   ========================================================= */

/* Pulse Effect Animation */
@keyframes pulse-effect {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Rotating Icons Movement Animations */
@keyframes icon-move-plane {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes icon-move-sim {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes icon-move-network {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes icon-move-phone-alt {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Hero Section Container */
.hero-section {
    position: relative;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5%;
    gap: 20px;
    overflow: hidden;
    /*height: 100vh; /* Full-screen height */*/
    background-color: var(--hero-bg); /* Uses CSS variable for background */
    color: var(--hero-text); /* Uses CSS variable for text */
    transition: background-color 0.3s ease, color 0.3s ease;
	
	
}


.light {
    position: absolute;
    width: 0px;
    opacity: .75;
    background-color: var(--hero-bg-color);
    box-shadow: var(--hero-bg-shadow);
    opacity: 0;
    top: 100vh;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.x1{
  -webkit-animation: floatUp 4s infinite linear;
  -moz-animation: floatUp 4s infinite linear;
  -o-animation: floatUp 4s infinite linear;
  animation: floatUp 4s infinite linear;
   -webkit-transform: scale(1.0);
   -moz-transform: scale(1.0);
   -o-transform: scale(1.0);
  transform: scale(1.0);
}

.x2{
  -webkit-animation: floatUp 7s infinite linear;
  -moz-animation: floatUp 7s infinite linear;
  -o-animation: floatUp 7s infinite linear;
  animation: floatUp 7s infinite linear;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  left: 15%;
}

.x3{
  -webkit-animation: floatUp 2.5s infinite linear;
  -moz-animation: floatUp 2.5s infinite linear;
  -o-animation: floatUp 2.5s infinite linear;
  animation: floatUp 2.5s infinite linear;
  -webkit-transform: scale(.5);
  -moz-transform: scale(.5);
  -o-transform: scale(.5);
  transform: scale(.5);
  left: -15%;
}

.x4{
  -webkit-animation: floatUp 4.5s infinite linear;
  -moz-animation: floatUp 4.5s infinite linear;
  -o-animation: floatUp 4.5s infinite linear;
  animation: floatUp 4.5s infinite linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  left: -34%;
}

.x5{
  -webkit-animation: floatUp 8s infinite linear;
  -moz-animation: floatUp 8s infinite linear;
  -o-animation: floatUp 8s infinite linear;
  animation: floatUp 8s infinite linear;
  -webkit-transform: scale(2.2);
  -moz-transform: scale(2.2);
  -o-transform: scale(2.2);
  transform: scale(2.2);
  left: -57%;
}

.x6{
  -webkit-animation: floatUp 3s infinite linear;
  -moz-animation: floatUp 3s infinite linear;
  -o-animation: floatUp 3s infinite linear;
  animation: floatUp 3s infinite linear;
  -webkit-transform: scale(.8);
  -moz-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8);
  left: -81%;
}

.x7{
  -webkit-animation: floatUp 5.3s infinite linear;
  -moz-animation: floatUp 5.3s infinite linear;
  -o-animation: floatUp 5.3s infinite linear;
  animation: floatUp 5.3s infinite linear;
  -webkit-transform: scale(3.2);
  -moz-transform: scale(3.2);
  -o-transform: scale(3.2);
  transform: scale(3.2);
  left: 37%;
}

.x8{
  -webkit-animation: floatUp 4.7s infinite linear;
  -moz-animation: floatUp 4.7s infinite linear;
  -o-animation: floatUp 4.7s infinite linear;
  animation: floatUp 4.7s infinite linear;
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -o-transform: scale(1.7);
  transform: scale(1.7);
  left: 62%;
}

.x9{
  -webkit-animation: floatUp 4.1s infinite linear;
  -moz-animation: floatUp 4.1s infinite linear;
  -o-animation: floatUp 4.1s infinite linear;
  animation: floatUp 4.1s infinite linear;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  left: 85%;
}

button:focus{
  outline: none;
}

@-webkit-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-moz-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@-o-keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}
@keyframes floatUp{
  0%{top: 100vh; opacity: 0;}
  25%{opacity: 1;}
  50%{top: 0vh; opacity: .8;}
  75%{opacity: 1;}
  100%{top: -100vh; opacity: 0;}
}



#head1, #head2,#head3, #head4, #head5{
  opacity: 0;
}

#head1{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
}

#head2{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}

#head3{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

#head4{
  -webkit-animation: fadeOut 1 5s ease-in;
  -moz-animation: fadeOut 1 5s ease-in;
  -o-animation: fadeOut 1 5s ease-in;
  animation: fadeOut 1 5s ease-in;
  -webkit-animation-delay: 17s;
  -moz-animation-delay: 17s;
  -o-animation-delay: 17s;
  animation-delay: 17s;
}

#head5{
  -webkit-animation: finalFade 1 5s ease-in;
  -moz-animation: finalFade 1 5s ease-in;
  -o-animation: finalFade 1 5s ease-in;
  animation: finalFade 1 5s ease-in;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 22s;
  -moz-animation-delay: 22s;
  -o-animation-delay: 22s;
  animation-delay: 22s;
}

@-webkit-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-moz-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-o-keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@keyframes fadeIn{
  from{opacity: 0;}
  to{opacity: 1;}
}

@-webkit-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-moz-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-o-keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@keyframes fadeOut{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 0;}
}

@-webkit-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@-moz-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@-o-keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

@keyframes finalFade{
  0%{opacity: 0;}
  30%{opacity: 1;}
  80%{opacity: .9;}
  100%{opacity: 1;}
}

#footer{
  font-family: 'Roboto', sans-serif;
  font-size: 1.2em;
  color: white;
  position: fixed;
  -webkit-transform: translate(95vw,90vh);
  -moz-transform: translate(95vw,90vh);
  transform: translate(95vw,90vh);
  transform: translate(95vw,90vh);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3; /* Behind all content */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the section */
}

/* Overlay to Darken Video Background */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(182deg, #101111, #000000d9); /* Adjust opacity as needed */
    z-index: -2; /* Above video but below content */
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 1; /* Ensures content is above the video and overlay */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    /*width: 100%;*/
    height: 100%;
}

/* Left Side: Image and Rotating Icons */
.hero-image-container {
    position: relative;
    width: 40%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: -1;
   
}

/* Phone Image */
.phone-image {
    /*width: 100%;
    max-width: 350px; /* Adjusted for appropriate sizing */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);*/
    border-radius: 50%;
    transition: width 0.3s ease;
}

/* Phone Screen Content */
.phone-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 50%;
    padding: 50px;
    padding: 1.5em 1em;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 250px;
    height: 250px;
}
.phone-screen::after {
content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: white;
    border-radius: 50%;
    z-index: -1;
  
}
.phone-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from var(--angle), #62aa03, #003dbd, #006aff, #64ae02, #00d8ff);
    border-radius: 50%;
    z-index: -1;
    animation: spin-border 3s linear infinite;
    padding: 2px;
}
/* Logo Inside Phone */
.phone-logo {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

/* SIM Icon Inside Phone */
.sim-icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

/* Changing Text Below Logo and SIM Icon */
.changing-text {
    font-size: 1.2rem;
    color: #262626;
    font-weight: bold;
}

/* Rotating Icons Around Phone */
.icon {
    position: absolute;
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

.icon video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the container */
    border-radius: 50%; /* Matches the icon styling */
    background: #1b1b1b;
    border: 2px #1b1b1b solid;
}

/* Specific Icon Positions and Animations */
.icon-plane {
    top: 30%;
    left: 25%;
    animation: icon-move-plane 8s linear infinite alternate;
    z-index: 3;
}

.icon-sim-card {
    top: 32%;
    right: 25%;
    animation: icon-move-sim 6s ease-in-out infinite alternate;
    z-index: 3;
}

.icon-network {
    bottom: 22%;
    left: 25%;
    animation: icon-move-network 7s ease-in-out infinite alternate;
    z-index: 3;
}

.icon-phone-alt {
    bottom: 24%;
    right: 25%;
    animation: icon-move-phone-alt 9s linear infinite alternate;
    z-index: 3;
}

/* Right Side: Text, CTA, and Countries */
.hero-text-container {
    width: 55%;
    max-width: 600px;
}

/* Hero Title */
.hero-title {
    font-size: 2.4rem;
    color: var(--hero-title-color, #00d8ff); /* Uses CSS variable with fallback */
    margin-bottom: 10px;
    font-weight: bold;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--hero-subtitle-color, #ffffff); /* Uses CSS variable with fallback */
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--hero-description-color, #cccccc); /* Uses CSS variable with fallback */
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #003dbd, #64ae02);
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    width: fit-content;
    text-align: center;
    align-self: center;
    font-family: 'Cairo', sans-serif;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(255, 64, 129, 0.5);
}

/* Search Box Styling */
.search-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.search-box select {
    flex: 1;
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid #003cba;
    border-radius: 0 30px 30px 0;
    background-color: var(--search-box-bg, #1c1f2b);
    color: var(--search-box-text, #ffffff);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Cairo', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23003cba' d='M0 0l5 5 5-5H0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 10px 10px;
    cursor: pointer;
	    width: 100%;
}

.search-box select:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.7);
}

.search-box select option {
    background-color: #222;
    color: #fff;
    padding: 10px;
}

/* CTA Button in Search Box */
.search-box .cta-button {
    background: linear-gradient(45deg, #003dbd, #64ae02);
    color: #ffffff;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 30px 0 0 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0;
    flex: none;
    width: fit-content;
    text-align: center;
    align-self: center;
    font-family: 'Cairo', sans-serif;
}

.search-box .cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px #003dbd;
}

/* Country List */
.country-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

/* Country Cards with Animated Borders */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.country-item {
    position: relative;
    padding: 1.5em 1em;
    text-align: center;
    background: var(--country-bg, #1c1f2b); /* Uses CSS variable with fallback */
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

/* Animated Border */
.country-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from var(--angle), #62aa03, #003dbd, #006aff, #64ae02, #00d8ff);
    border-radius: 10px;
    z-index: -1;
    animation: spin-border 3s linear infinite;
    padding: 2px; /* Creates the animated border effect */
}

.country-item::after {
    content: "";
    position: absolute;
    top: 5px; /* Inner border spacing */
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--country-inner-bg, #1c1f2b); /* Same background color as card */
    border-radius: 8px;
    z-index: -1;
}

/* Border Animation */
@keyframes spin-border {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}

/* Country Content */
.country-flag {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.country-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
}

.country-price,
.country-more {
    font-size: 0.8rem;
    color: #00bcd4;
}

/* Responsive Design */

/* Tablet Devices */
@media (max-width: 1024px) {
    .hero-image-container {
        width: 45%;
		 margin-top: 50px;
		 margin-bottom: 50px;
    }

    .hero-text-container {
        width: 50%;
    }
}

/* Tablets and Small Screens */
@media (max-width: 768px) {
    .hero-image-container {
        width: 50%; /* Phone image at 50% width on tablets */
		 margin-top: 0px;
		 margin-bottom: 0px;
    }

    .phone-image {
        max-width: 250px; /* Adjusted for smaller screens */
    }

    .country-list {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.icon-plane {
    top: 0%;
    left: 5%;
}

.icon-sim-card {
    top: 0%;
    right: 5%;
}

.icon-network {
    bottom: 0%;
    left: 5%;
    animation: icon-move-network 7s ease-in-out infinite alternate;
    z-index: 3;
}

.icon-phone-alt {
    bottom: 0%;
    right: 5%;
}

}

/* Mobile Devices */
@media (max-width: 576px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-image-container {
        order: 2; /* Place the phone image below the text */
        width: 100%;
		 margin-top: 80px;
		 margin-bottom: 0px;
    }

    .hero-text-container {
        width: 100%;
		        margin-top: 20px;
    }

    .phone-image {
        margin-top: 25px;
        max-width: 200px; /* Phone image at 50% width on mobiles */
    }

    .country-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-item {
        padding: 1em 0.5em;
    }

    .country-flag {
        width: 40px;
    }

    .country-name {
        font-size: 0.8rem;
    }

    .country-price,
    .country-more {
        font-size: 0.7rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem; /* Adjust font size for smaller devices */
    }
	
	
.icon-plane {
    top: 0%;
    left: 5%;
}

.icon-sim-card {
    top: 0%;
    right: 5%;
}

.icon-network {
    bottom: 0%;
    left: 5%;
    animation: icon-move-network 7s ease-in-out infinite alternate;
    z-index: 3;
}

.icon-phone-alt {
    bottom: 0%;
    right: 5%;
}


    /* Adjust Search Box Layout */
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box select,
    .search-box .cta-button {
        width: 100%;
        border-radius: 30px;
    }

    .search-box select {
        margin-bottom: 10px;
    }

    /* Adjust Header and Logo on Smaller Screens */
    .logo {
        width: 30%;
		margin-right:0px;
    }

    .header {
        padding: 20px 20px;
    }

    .btn-header {
        padding: 5px 10px;
    }

    .header.scrolled {
        padding: 10px 20px;
    }

    /* Adjust Theme Toggle Icon Size on Smaller Screens */
    .theme-toggle button .sun-icon,
    .theme-toggle button .moon-icon {
        font-size: 16px; /* Adjust size as needed */
    }
}
video.video-icon {
    width: 128px;
    height: auto;
    border-radius: 50%;
}
video.video-icon-steps {
    width: 64px;
    height: 64px;
}


.parallax-section {
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.parallax-section .overlay {
    animation: fadeIn 1.5s ease-in-out;
	  top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--section-overlay-bg);
    z-index: 1;
		padding: 60px 0px 0px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#features {
    background-image: var(--section-feature-bg);
}


/* =========================================================
   Features Section Styles
   ========================================================= */
.features-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    /*padding: 60px 20px;*/
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
	   /* height: 100vh; /* Full-screen height */

}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
	/*margin-top: 50px;*/

}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row for desktop */
    gap: 30px;
padding-bottom: 40px;
}

.feature-item {
    background-color: var(--feature-inner-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
	box-shadow: 0px 0px 1px var(--feature-border-color);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-img {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--hero-title-color);
}

.feature-description {
    font-size: 1rem;
    color: var(--hero-description-color);
}

/* Responsive Design for Features */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row for tablets */
    }
	
	.features-section h2 {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr); /* 1 item per row for mobile */
   padding: 10px;
            gap: 20px;

   }
	video.video-icon {
    width: 48px;
}
}

@media (max-width: 768px) {
	
	
    .features-section h2 {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.75rem;
    }

    .features-container {
            gap: 10px;
padding: 15px;
grid-template-columns: repeat(2, 1fr); /* 1 item per row for mobile */
    }
	video.video-icon {
    width: 48px;

}
}





/* ================================
   TESTIMONIALS SECTION STYLES
================================ */
.testimonials-section {
  background-color: var(--section-bg); /* Example dark BG */
  color:  var(--section-text); 
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 700;
}
@media (max-width: 992px) {
	.testimonials-section h2 {font-size: 1.8rem;}
}


@media (max-width: 768px) {
	.testimonials-section h2 {font-size: 1.5rem;}
}

/* Swiper Container */
.swiper {
  width: 100%;
  padding: 100px 0;
}

/* Each Slide */
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Testimonial Card */
.testimonial {
  background-color: #222;  /* Card color on dark BG */
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

/* Image in Testimonial */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Testimonial Text */
.testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color:  var(--section-text); 
}

/* Client Name */
.client-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d8ff; /* accent color */
  margin-top: 5px;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #00d8ff;
  transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

/* Pagination Bullets */
.swiper-pagination-bullet {
  background: #00d8ff;
}
.swiper-pagination-bullet-active {
  background: #fff;
}

/* Responsive: Adjust card width on smaller screens */
@media (max-width: 576px) {
  .testimonial {
    max-width: 90%;
  }
}
/* =========================================================
   Call to Action Section Styles
   ========================================================= */
.cta-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}
@media (max-width: 992px) {
	.cta-section h2 {font-size: 1.8rem;}
}


@media (max-width: 768px) {
	.cta-section h2 {font-size: 1.5rem;}
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--muted-color);
}

.cta-button-cta {
    display: inline-block;
    background: var(--button-bg);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.cta-button-cta:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   FAQ Section Styles
   ========================================================= */
.faq-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    padding: 60px 20px;
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
	    height: 100vh; /* Full-screen height */

}
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
}
@media (max-width: 992px) {
	.faq-section h2 {font-size: 1.8rem;}
}


@media (max-width: 768px) {
	.faq-section h2 {font-size: 1.5rem;}
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--section-border);
    padding-bottom: 15px;
    transition: background-color 0.3s ease;
}

.faq:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
    transition: color 0.3s ease;
}

.faq-question::after {
    content: "\f078"; /* FontAwesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    color: var(--muted-color);
}

.faq.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
}

.faq:hover .faq-question {
    color: var(--accent-color);
}

/* =========================================================
   Contact Us Section Styles
   ========================================================= */
.contact-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
	    height: 100vh; /* Full-screen height */

}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--muted-color);
}
@media (max-width: 992px) {
	.contact-section h2 {font-size: 1.8rem;}
	.contact-section p{font-size: 1em;};
}


@media (max-width: 768px) {
	.contact-section h2 {font-size: 1.5rem;}
	.contact-section p{ font-size: 0.85em;}
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--country-bg);
    color: var(--section-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-hover-color);
    box-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
    outline: none;
}

.contact-form button {
    background: var(--button-bg);
    color: #ffffff;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   Special Offer/Guarantee Section Styles
   ========================================================= */
.cta-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--muted-color);
}

.cta-button-cta {
    display: inline-block;
    background: var(--button-bg);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.cta-button-cta:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   FAQ Section: Accordion Functionality (Optional)
   ========================================================= */

/* If using JavaScript to toggle 'active' class on .faq, no additional CSS is needed */

/* =========================================================
   Responsive Styles for New Sections
   ========================================================= */

/* Adjustments for Smaller Screens */
@media (max-width: 768px) {
    /* Testimonials Section */
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 100%;
        max-width: 500px;
    }

    /* Call to Action Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-question {
        font-size: 1em;
    }

    .faq-answer {
        font-size: 0.80em;
    }

    /* Contact Us Section */
    .contact-form {
        width: 100%;
    }

    .contact-form form {
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Special Offer/Guarantee Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* =========================================================
   Dark and Light Theme Adjustments
   ========================================================= */

/* Ensure that text and backgrounds adapt based on theme */

.testimonials-section .testimonial {
    background-color: var(--country-inner-bg);
}

.faq-section .faq-question {
    color: var(--section-text);
}

.faq-section .faq-answer {
    color: var(--muted-color);
}

.contact-section input,
.contact-section textarea {
    background-color: var(--country-bg);
    color: var(--section-text);
}

.contact-section .contact-form button {
    background: var(--button-bg);
    color: #ffffff;
}

.cta-section {
    background-color: var(--section-bg);
    color: var(--section-text);
}

.cta-section .cta-button-cta {
    background: var(--button-bg);
    color: #ffffff;
}

/* Ensure border colors use CSS variables */

.faq {
    border-bottom: 1px solid var(--section-border);
}

.testimonial {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--accent-color);
}

.contact-form button {
    background: var(--button-bg);
    color: #ffffff;
}

/* Hover Effects Adapt to Theme */

.testimonial:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-cta:hover,
.contact-form button:hover {
    background: var(--button-hover-bg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/*Footer */

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 20px 10px; /* Reduced padding for smaller screens */
    position: relative;
}

footer p {
    margin-bottom: 15px; /* Reduced margin for better spacing */
    font-size: 0.9em; /* Slightly smaller text for smaller screens */
    color: var(--footer-text);
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: var(--footer-text);
    margin-inline-end: 8px;
    font-size: 1.3em; /* Reduced icon size for smaller screens */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--social-hover);
}

.payment-card-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Ensures icons wrap on small screens */
    justify-content: center;
    gap: 10px; /* Reduced gap for tighter spacing */
}

.payment-card-bottom ul li img {
    height: 30px; /* Smaller icons for smaller screens */
    width: auto;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: var(--scroll-btn-bg);
    color: var(--scroll-btn-text);
    border: none;
    border-radius: 50%;
    width: 45px; /* Smaller button for smaller screens */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: var(--scroll-btn-hover-bg);
}

#scrollToTopBtn i {
    margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) { /* Tablets */
    footer {
        padding: 15px 10px; /* Reduced padding for tablets */
    }

    footer p {
        font-size: 0.85em; /* Smaller text for tablets */
    }

    .social-links a {
        font-size: 1.2em; /* Slightly smaller icons */
    }

    .payment-card-bottom ul {
        gap: 8px; /* Tighter spacing */
    }
}

@media (max-width: 480px) { /* Phones */
    footer {
        padding: 10px 5px; /* Further reduced padding for phones */
    }

    footer p {
        font-size: 0.8em; /* Smallest text for phones */
    }

    .social-links a {
        font-size: 1em; /* Smaller icons for phones */
    }

    .payment-card-bottom ul {
        gap: 5px; /* Minimal gap for compact layout */
    }

    .payment-card-bottom ul li img {
        height: 25px; /* Smallest icons for phones */
    }

    #scrollToTopBtn {
        width: 40px; /* Smallest button size */
        height: 40px;
        font-size: 0.9em; /* Smaller arrow icon */
    }
}


/* =========================================================
   Scroll to Top Button Styles
   ========================================================= */
#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--scroll-btn-bg);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    background-color: var(--scroll-btn-hover-bg);
    transform: translateY(-5px);
}

#scrollToTopBtn i {
    font-size: 1.5em;
}

/* =========================================================
   Active Menu Item Styles
   ========================================================= */
.navlinks li a.active,
.sidebar li a.active {
    color: var(--social-hover);
    border-bottom: 2px solid var(--social-hover);
}

/* =========================================================
   Responsive Styles
   ========================================================= */

/* Hide menu icon on desktop */
@media only screen and (min-width: 830px) {
    .menu-icon {
        display: none;
    }
}

/* Hide navigation items on mobile/tablet */
@media only screen and (max-width: 830px) {
    .navlinks .items {
        display: none;
    }
	.hero-title {
        font-size: 1.7em;
    }
	.hero-subtitle {
    font-size: 1.3rem;
}

    .hero-description {
        font-size: 1.1em;
    }
}

/* Adjust Sidebar for Smaller Screens */
@media only screen and (max-width: 600px) {
    .sidebar {
        width: 80%;
    }

    .banner-column {
        padding: 20px;
    }

    .heading-xl {
        font-size: 1em;
    }

    .paragraph {
        font-size: 0.9em;
    }

    .hero-section {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 1.5em;
    }
	.hero-subtitle {
    font-size: 1.1rem;
}

    .hero-description {
        font-size: 1em;
    }

    /* Adjust theme toggle icon size on smaller screens */
    .theme-toggle button .sun-icon,
    .theme-toggle button .moon-icon {
        font-size: 16px; /* Adjust size as needed */
    }

    .logo {
        width: 30%;
    }

    .header {
        padding: 20px 20px;
    }

    .btn-header {
        padding: 5px 10px;
    }

    .header.scrolled {
        padding: 10px 20px;
    }
}

/* =========================================================
   Smooth Scrolling
   ========================================================= */
html {
    scroll-behavior: smooth;
}
/* =========================================================
   Activation Section Styles
   ========================================================= */
.activation-section {
    background-color: var(--section-bg);
    color: var(--section-text);
    padding: 60px 20px;
    border-bottom: 1px solid var(--section-border);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.activation-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.activation-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Combined Layout */
.activation-content {
    display: flex;
    gap: 30px;
align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
	.activation-section h2 {font-size: 1.8rem;}
	.activation-section p {font-size: 1rem;}	
}


@media (max-width: 768px) {
	.activation-section h2 {font-size: 1.5rem;}
	.activation-section p {font-size: 0.75rem;}	
}
/* =========================================================
   Activation Steps Section Styles
   ========================================================= */
.activation-steps-container {
    flex: 1;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.activation-step {
    background-color: var(--country-inner-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
}

.activation-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--accent-color);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--hero-title-color);
    font-weight: 700;
}

.step-description {
    font-size: 1rem;
    color: var(--hero-description-color);
    margin: 0;
}

.activation-step .step-content {
    text-align: right;
}

/* =========================================================
   Compatibility Checker Section Styles
   ========================================================= */
/* Compatibility Container */
.compatibility-container {
   flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--card-bg);
    min-height: 400px; /* Match Activation Steps height */
    text-align: center;
    position: relative;
	box-shadow: var(--card-shadow);
}

/* Placeholder Section */
.compatibility-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
	   
}

.compatibility-placeholder img {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.guide-text {
    font-size: 1.2em;
    color: var(--muted-color);
    line-height: 1.5;
 
}

/* Compatibility Steps */
.compatibility-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
}
/* Show Content on Interaction */
.compatibility-content.shown + .compatibility-placeholder {
    opacity: 0;
    visibility: hidden;
}

/* Ensure Consistent Height */
.compatibility-container {
    min-height: 450px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .activation-content {
        flex-direction: column;
    }

    .compatibility-placeholder img {
        width: 80px;
    }
}
.compatibility-step {
    margin-bottom: 20px;
}

.compatibility-step label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary-color);
}

.compatibility-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    background-color: var(--country-bg);
    color: var(--secondary-color);
    font-size: 1em;
    appearance: none;
    cursor: pointer;
}

.compatibility-select:focus {
    border-color: var(--accent-hover-color);
    box-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
    outline: none;
}

.compatibility-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 700;
}

.compatibility-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

/* Compatibility Result */
.compatibility-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1em;
}

.compatibility-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.compatibility-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .compatibility-container {
        padding: 15px;
    }

    .compatibility-placeholder img {
        width: 100px;
    }

    .guide-text {
        font-size: 1em;
    }

    .compatibility-select {
        font-size: 0.9em;
    }

    .compatibility-button {
        font-size: 1em;
        padding: 12px 20px;
    }
}


/* =========================================================
   Responsive Design
   ========================================================= */
@media (max-width: 768px) {
    .activation-content {
        flex-direction: column;
        gap: 20px;
    }

    .activation-steps-container,
    .compatibility-container {
        max-width: 100%;
    }

    .activation-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
		flex-direction: row;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .compatibility-select {
        font-size: 0.9em;
    }

    .compatibility-button {
        font-size: 1em;
        padding: 12px 20px;
    }
}

/***********************pricing********************************/


/* Section Wrapper */
.pricing-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color); /* White text */
    direction: rtl; /* Right-to-left layout */
    text-align: right;
}

/* Container */
.pricing-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--subtitle-color);
    margin-bottom: 40px;
}

/* Tabs Navigation */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

/* Tab Buttons */
.tab-button {
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    background-color: var(--card-bg);
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px var(--card-shadow);
    transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
    font-weight: bold;
    color: var(--text-color);
    outline: none;
	font-family: 'Cairo';
}

.tab-button:hover {
    background-color: var(--card-hover-bg);
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Tab Content */
.tab-content {
    position: relative;
}

/* Tab Pane */
.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Country Options Grid */
.country-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

select.country-dropdown {
    flex: 1;
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid #003cba;
    border-radius: 30px;
    background-color: var(--search-box-bg, #1c1f2b);
    color: var(--search-box-text, #ffffff);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Cairo', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: ;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 10px 10px;
    cursor: pointer;
}
.country-dropdown::after {
    content: "";
    position: absolute;
    top: 5px; /* Inner border spacing */
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--country-inner-bg, #1c1f2b); /* Same background color as card */
    border-radius: 8px;
    z-index: -1;
}


/* Country Card */
.country-card {
    display: block;
    padding: 10px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    text-decoration: none; /* Remove underline */
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.country-card span {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Cards Container */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Pricing Card */
.pricing-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 280px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Pricing Header */
.pricing-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.pricing-duration {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Body */
.pricing-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-data {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-button {
    background-color: var(--button-bg);
    color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    text-decoration: none; /* Remove underline */
}

.select-button:hover {
    background-color: var(--button-hover-bg);
    transform: scale(1.05);
}

/* Responsive Design */

/* Tablets and Below */
@media (max-width: 992px) {
    .pricing-cards {
        gap: 15px;
    }

    .pricing-card {
        width: 45%;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .pricing-card {
        width: 100%;
    }

    . {
        font-size: 2rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-data {
        font-size: 1.3rem;
    }

    .select-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Adjust Tabs for Mobile */
    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 992px) {
	.section-title {font-size: 1.8rem;}
}


@media (max-width: 768px) {
	.section-title {font-size: 1.5rem;}
}

/* Accessibility Focus Styles */
.tab-button:focus,
.select-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Add subtle animations to menu items */
.tab-button {
    transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
}

.tab-button:hover {
    background-color: var(--card-hover-bg);
    color: var(--primary-color);
    transform: translateY(-2px);
}
/****wave sections activarion*/

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}
/* ===========================
   CTA Parallax Section
=========================== */
.my-cta-parallax {
    position: relative;
    background-image: url('https://lp.gsm2go.com/images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax effect */
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

.my-cta-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 0;
}

.my-cta-parallax .cta-content {
    position: relative;
    z-index: 1; /* above overlay */
    padding: 20px;
}

.my-cta-parallax h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
@media (max-width: 992px) {
	.my-cta-parallax h2 {font-size: 1.8rem;}
}


@media (max-width: 768px) {
	.my-cta-parallax h2 {font-size: 1.5rem;}
}
.my-cta-parallax p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.my-cta-parallax .cta-button-cta {
    background: var(--button-bg);
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.my-cta-parallax .cta-button-cta:hover {
    transform: scale(1.07);
    background: var(--button-hover-bg);
}

/* Dark theme override */
body.dark-theme .my-cta-parallax::before {
    background: linear-gradient(135deg, rgba(18,18,18,0.8), rgba(18,18,18,0.9));
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}

.bg-all {

    overflow: hidden;
}
.titel{
    color: #fff;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.culd{
    position: absolute;
    top: 100px;
    left: 100px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%,-50%);
    animation: culd 12s  ease-in forwards infinite;
}
.culd:nth-child(2n){
    border-color: var(--secondary-color);;
}
.culd:nth-child(2){
    animation-delay: 2s;
    top: 90%;
    left: 10%;
}
.culd:nth-child(3){
    animation-delay: 4s;
    top: 10%;
    left: 50%;
}
.culd:nth-child(4){
    animation-delay: 6s;
    top: 50%;
    left: 60%;
}
.culd:nth-child(5){
    animation-delay: 8s;
    top: 40%;
    left: 90%;
}
@keyframes culd{
    from{
        transform: scale(0) rotate(0deg) translate(-50%,-50%);
        opacity: 1;
    }
    to{
        transform: scale(20) rotate(360deg) translate(-50%,-50%);
        opacity: 0;
    }
}