* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
}

/* Header */
.header {
  background: #0b3d91;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

/* Logo container */
.logo img {
  max-width: 180px;   /* default desktop size */
  height: auto;       /* keeps aspect ratio */
  display: block;
}

/* Tablet */
@media (max-width: 768px) {
  .logo img {
    max-width: 140px;
    float:left;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo img {
    max-width: 120px;
    float: left;
  }
}





.cardoi {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

























































.nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.btn-small {
  background: #f39c12;
  padding: 8px 14px;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive Header */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: #0b3d91;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 15px;

  }

  .nav a {
    margin: 10px 0;
  }

  .nav.show {
    display: flex;
z-index: 2;
    
  }
}


.slider {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}

.slides img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}
/* Slider */
.slider {
  position: relative;
  height: 550px;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}



/* Hero Section */
.hero {
  background: linear-gradient(rgba(11,61,145,0.8), rgba(11,61,145,0.8)),
              url('../../images/inst7.jpg');
  background-size: cover;
  color: white;
  height:270px;
  text-align: center;
  padding: 40px 10px;
}


.hero h1 {
  font-size: 40px;
}

.hero p {
  font-size: 15px;
  margin: 10px 0;
  
}

.btn {
  background: #f39c12;
  color: white;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}
/* traco Section */

.traco {
  background: linear-gradient(rgba(11,61,145,0.8), rgba(11,61,145,0.8)),
   url('../../images/inst3.jpg');
  background-size: cover;
  color: white;
  
  text-align: center;
  padding: 5px 10px;
}

.cary{
  border-radius: 10px;
  background-repeat: no-repeat;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.containere {
  max-width: 600px;
  background-color: transparent;
  color: #f39c12;
  margin: 40px auto;
  border: #f39c12 solid 5px;
  padding: 10px;
  border-radius: 10px;
}


.tracking-box{
    width:80%;
    max-width:900px;
}

.tracking-form{
    display:flex;
    background:transparent;
    border: #f39c12 solid 1px;
    border-radius:10px;
    box-shadow:0 3px 6px rgba(0,0,0,0.2);
}

.tracking-form input{
    flex:1;
    border:none;
    background:transparent;
    color:white;
    font-size:18px;
    outline:none;
}

.tracking-form input::placeholder{
    color:#d6d6d6;
}

.tracking-form button{
    background:#f39c12;
    border:none;
    color:#fff;
    padding:15px 40px;
    border-radius:5px;
    cursor:pointer;
    border: white solid 2px;
}

.tracking-form button:hover{
    background:transparent;
}






/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 60px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card h3 {
  color: #0b3d91;
}
.card  img{
  width:100%;

}
.card:hover {
  transform: translateY(-10px);
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* feature Section */
.feature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 60px;
  overflow: hidden;
}

/* Video background */
.feature-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Overlay (replaces your gradient) */
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11,61,145,0.8), rgba(11,61,145,0.8));
  z-index: -1;
}

/* Content stays above video */



.cardo{
  border-radius: 10px;
  background-repeat: no-repeat;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.textcol{
  background-color:rgba(33, 70, 218, 0.438);
  color: white;
  padding-top: 20px;
  padding-left: 10px;
  height: 350px;
  font-size: 18px;
  border-radius: 10px;
  text-align: center;
}


.btn-tex{
  padding: 14px 28px;
  background-color: #f39c12;
  color: #fff;
  margin-top: 50px;
  border-radius: 5px;
  border-color: #f39c12;
  font-size: 1rem;
}

.btn-tex:hover{
  cursor: pointer;
  background-color: transparent;
  color: white;
  text-transform: uppercase;
    
}




.container {
  max-width: 650px;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.error {
  color: red;
  text-align: center;
}

.timeline {
  border-left: 4px solid #0b3d91;
  padding-left: 20px;
}

.timeline div {
  margin-bottom: 15px;
}



/* videos */

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}




.slider {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-30%); }
  to { opacity: 1; transform: translateY(-50%); }
}

/* Buttons */
.nave {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dots span {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  opacity: 0.5;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: #f39c12;
}



/*services and co  background: #0b3d91;*/
.page-header {
  background: linear-gradient(rgba(11,61,145,0.8), rgba(11,61,145,0.8)),
              url('../../images/oanda-comp-5.jpg');
  background-size: cover;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.services, .testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px;
}

.about, .contact {
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
}

textarea {
  width: 100%;
  padding: 12px;
  min-height: 120px;
}

.success {
  color: green;
  text-align: center;
  margin-bottom: 15px;
}
/*footer*/


.footer {
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #0b3d91;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #0b3d91
}

.footer-col p {
  margin: 5px 0;
  color: #333;
}










/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0b3d91;
  color: #fff;
  border-color: #0b3d91;
}

/* Bottom Bar */
.footer-bottom {
  background: #0b3d91;
  color: white;
  text-align: center;
  padding: 15px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}
/* start loader spinner */
#premiumLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b1c39;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

/* Truck Animation */
.truck {
  font-size: 50px;
  animation: moveTruck 2s linear infinite;
}

/* Move left to right */
@keyframes moveTruck {
  0% { transform: translateX(-30px); }
  50% { transform: translateX(30px); }
  100% { transform: translateX(-30px); }
}

/* Text */
.loading-text {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* Progress bar */
.progress-bar {
  width: 200px;
  height: 5px;
  background: #444;
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  background: #00c3ff;
  animation: loading 3s linear forwards;
}

@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* end loader spinner  */

/* loader spinner for tracking  */
#trackingLoader {
  display: none;
  text-align: center;
  margin-top: 20px;
}

#trackingLoader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  margin: auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


.logo-loader {
  width: 150px;
  animation: spinLogo 2s linear infinite;
}

@keyframes spinLogo {
  100% { transform: rotate(360deg); }
}
/* end loader spinner  */


.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px;
  display: none;
  z-index: 9999;
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: #0d6efd;
}

.cookie-buttons {
  margin-top: 10px;
}

.btn-accept {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-reject {
  background: #555;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}




