/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.custom-navbar {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 15px 0;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

.logo span {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
}

.nav-link {
  color: #fff !important;
  margin: 0 15px;
  font-weight: 500;
}

.nav-link.active {
  border-bottom: 2px solid #fff;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #4c63ff;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('img/banner.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

/* CONTENT CENTER */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* TITLE */
.hero-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

/* TEXT CONTAINER */
.changing-text {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

/* INNER TEXT */
.text-inner {
  display: block;
  animation: slideText 6s infinite;
}

.text-inner div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ANIMATION */
@keyframes slideText {
  0%   { transform: translateY(0%); }
  25%  { transform: translateY(0%); }

  33%  { transform: translateY(-100%); }
  58%  { transform: translateY(-100%); }

  66%  { transform: translateY(-200%); }
  91%  { transform: translateY(-200%); }

  100% { transform: translateY(0%); }
}

/* ========================= */
/* ✅ RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Desktop */
.hero-title {
  font-size: 80px;
}

.text-inner div {
  height: 90px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-title {
    font-size: 55px;
  }

  .text-inner div {
    height: 65px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .text-inner div {
    height: 45px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 40px;
    text-align: center;
  }

  .contact-btn {
    display: none;
  }

  .navbar-collapse {
    background: rgba(0,0,0,0.9);
    padding: 20px;
  }
}


/* SECTION BG */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
  position: relative;
}

/* IMAGE BOX */
.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img img {
  width: 100%;
  display: block;
}

/* CONTENT */
.about-content {
  padding-left: 40px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ========================= */
/* ✅ RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 14px;
  }
}

.services-section {
  padding: 80px 0;
  background: url('img/about2.jpg') center/cover no-repeat;
}

/* CARD BASE */
.service-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.5);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.6);
}

.service-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  border: 2px solid #3b5bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

/* LARGE CARDS */
.service-card.large h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card.large p {
  font-size: 14px;
  color: #333;
}

/* SMALL CARDS */
.service-card.small {
  padding: 20px;
}

.service-card.small p {
  font-size: 13px;
  margin: 0;
}

/* ========================= */
/* RESPONSIVE 🔥 */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .service-card {
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-section {
    padding: 50px 15px;
  }

  .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .service-card.large h4 {
    font-size: 18px;
  }

  .service-card.large p {
    font-size: 13px;
  }

  .service-card.small p {
    font-size: 12px;
  }
}


/* SECTION */
.world-section {
  padding: 80px 0;
  background: #f5f5f5;
}

/* COUNTRY CARD */
.country-card {
  height: 180px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 15px;
}

.country-card h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}

/* ===== SLIDER WRAPPER ===== */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

/* ===== SLIDER ===== */
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

/* hide scrollbar */
.slider::-webkit-scrollbar {
  display: none;
}

/* ===== SLIDE CARD ===== */
.slide {
  flex: 0 0 auto;              /* IMPORTANT FIX */
  width: 260px;                /* card width */
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== OVERLAY GRADIENT ===== */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

/* ===== TEXT (IMAGE PART LOOK) ===== */
.slide::after {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
}

/* ===== CUSTOM COLORS + TEXT ===== */
.telecoms::before {
  background: linear-gradient(to top, rgba(0,150,0,0.8), transparent);
}
.telecoms::after {
  content: "TELECOMS";
}

.transport::before {
  background: linear-gradient(to top, rgba(255,120,0,0.8), transparent);
}
.transport::after {
  content: "TRANSPORTATION";
}

.energy::before {
  background: linear-gradient(to top, rgba(255,0,0,0.8), transparent);
}
.energy::after {
  content: "ENERGY";
}

.electronics::before {
  background: linear-gradient(to top, rgba(255,200,0,0.8), transparent);
}
.electronics::after {
  content: "CONSUMER ELECTRONICS";
}

.healthcare::before {
  background: linear-gradient(to top, rgba(0,120,255,0.8), transparent);
}
.healthcare::after {
  content: "HEALTHCARE";
}

.electronics::before {
  background: linear-gradient(to top, rgba(255,200,0,0.8), transparent);
}
.electronics::after {
  content: "Artificial Intelligence";
}

/* ===== HOVER EFFECT ===== */
.slide:hover {
  transform: translateY(-8px);
}

.slide:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

/* ===== ARROWS ===== */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
}

.nav:hover {
  opacity: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slide {
    width: 200px;
    height: 200px;
  }
}

/* ===== SECTION BG ===== */
.events-section {
  position: relative;
  padding: 80px 0;
  background: url('img/astro.jpg') center/cover no-repeat;
  color: #fff;
}

/* DARK OVERLAY */
.events-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
}

.events-section .container {
  position: relative;
  z-index: 2;
}

/* ===== TITLE ===== */
.sub-title {
  letter-spacing: 2px;
  font-size: 12px;
  color: #aaa;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===== EVENT LIST ===== */
.events-list {
  margin-top: 30px;
}

.event-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* LEFT LOGO */
.event-left img {
  height: 40px;
  object-fit: contain;
}

/* CENTER TEXT */
.event-center p {
  margin: 0;
  font-size: 18px;
  color: #ddd;
}

/* RIGHT BUTTON */
.arrow-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e40ff;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #3b5bff;
}

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;   /* underline hata dega */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .event-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .event-right {
    align-self: flex-end;
  }

  .main-title {
    font-size: 32px;
  }
}


/* ===== SECTION WITH BG IMAGE ===== */
.success-section {
  position: relative;
  padding: 60px 0; /* ↓ reduced padding */
  background: url('img/sa.png') center/cover no-repeat;
  color: #fff;
}

/* DARK OVERLAY */
.success-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.success-section .container {
  position: relative;
  z-index: 2;
}

/* ===== LEFT IMAGE ===== */
.success-img {
  border-radius: 20px;
  overflow: hidden;
}

.success-img img {
  width: 80%;
  height: 100%;
  object-fit: cover;
}

/* ===== TITLE ===== */
.sub-title {
  color: #ccc;
  margin-bottom: 15px;
}

/* ===== TOOL BOX (LEFT ALIGN FIX) ===== */
.tool-box {
  background: rgba(0,0,0,0.4);
  padding: 15px; /* ↓ compact */
  border-radius: 12px;
  text-align: left; /* 👈 important */
  transition: 0.3s;
  height: 100%;
}

.tool-box:hover {
  background: rgba(0,0,0,0.6);
}

/* ICON */
.tool-box .icon {
  font-size: 24px;
  margin-bottom: 8px;
}

/* TEXT */
.tool-box h5 {
  margin-bottom: 5px;
  font-size: 16px;
}

.tool-box p {
  font-size: 13px;
  color: #ddd;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .success-section {
    padding: 40px 0;
  }

  .success-img {
    margin-bottom: 20px;
  }
}

/* ===== SECTION ===== */
.delegate-section {
  overflow: hidden;
}

/* ===== LEFT SIDE ===== */
.delegate-content {
  padding: 80px 70px;
  background: #f5f6f8;
  height: 100%;
  position: relative;
}

/* HEX PATTERN BG */
.delegate-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/hex-pattern.png');
  opacity: 0.1;
}

/* CONTENT ABOVE BG */
.delegate-content * {
  position: relative;
  z-index: 2;
}

/* TITLE */
.delegate-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* QUOTE ICON */
.quote-icon {
  font-size: 40px;
  color: #4c6fff;
  margin-bottom: 15px;
}

/* TEXT */
.delegate-content p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 30px;
  max-width: 500px;
}

/* AUTHOR */
.delegate-content h6 {
  font-weight: 600;
  color: #000;
}

/* ===== RIGHT IMAGE ===== */
.delegate-img {
  height: 100%;
}

.delegate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .delegate-content {
    padding: 50px 30px;
  }

  .delegate-img img {
    height: 300px;
  }
}

.footer {
  background: #050b16;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer hr {
  border-color: rgba(255,255,255,0.2);
  margin-bottom: 40px;
}

.footer h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer p {
  font-size: 14px;
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links li:hover {
  color: #fff;
}

.map-img {
  max-width: 100%;
  margin-top: 10px;
  opacity: 0.9;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media(max-width: 768px){
  .footer-top h2 {
    font-size: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}