@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu&display=swap');
 :root {
        --primary-color: #002f63;
        --secondary-color: #ffdd57;
        --text-color: #333;
        --background-color: #f0f2f5;
        --white: #ffffff;
        --gray: #555;
      }
      .ex{
        dir: rtl;
      }
      .primary-text{
          color: var(--primary-color);
      }
      .primary-bg{
          background-color: var(--primary-color);
      }

      /* General Styles */
      body {
        font-family: 'Poppins', sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        /* Prevent horizontal overflow */
      }
      /* Navbar Styles */
.navbar {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1350px; /* Adjust this value as needed */
    padding: 0 20px; /* Add padding to the sides */
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 20px;
}

.logo img {
    height: 30px;
    margin-right: 8px;
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease-in-out;
    font-size: 14px;
}

.nav-links li a:hover {
    color: #d4d4d4;
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #001936;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.dropdown-content a {
    color: white;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease-in-out;
}

.dropdown-content a:hover {
    background-color: var(--primary-color);
}

.dropdown .dropbtn {
    cursor: pointer;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}




.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 15px;
    }
    .navbar-content {
        width: 100%;
        padding: 0 15px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
        transition: max-height 0.5s ease-in-out;
        overflow: hidden;
        max-height: 0;
    }

    .nav-links.active {
        display: flex;
        max-height: 500px;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links li a {
        padding: 10px;
        width: 100%;
        display: block;
    }

    .dropdown-content {
        position: static;
        background: none;
        box-shadow: none;
        max-height: 0;
        transition: max-height 0.3s ease-in-out;
    }

    .dropdown.active .dropdown-content {
        max-height: 200px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
.content-wrapper {
        padding-top: 60px; /* Account for the fixed navbar */
    }
    
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-weight: bold;
        margin-bottom: 1rem;
        color: var(--primary-color);
      }

      p {
        margin-bottom: 1.5rem;
        color: var(--gray);
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
      }

      a:hover {
        color: var(--secondary-color);
      }

      .btn {
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
      }

      .btn-primary {
        background-color: var(--primary-color);
        color: var(--white);
      }

      .btn-primary:hover {
        background-color: #004494;
      }

      .btn-secondary {
        background-color: var(--secondary-color);
        color: var(--text-color);
      }

      .btn-secondary:hover {
        background-color: #e6c64d;
      }
      /* Hero Section */
      .hero {
        margin-top:60px ;
        background: url('../../img/world4.jpeg') no-repeat center center/cover;
        height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-align: center;
        position: relative;
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.631);
      }

      .hero h1 {
        font-size: 3.5rem;
        position: relative;
        z-index: 1;
      }

      .hero p {
        font-size: 1.25rem;
        position: relative;
        z-index: 1;
      }

      @media (max-width: 768px) {
        .hero {
          height: 50vh;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero p {
          font-size: 1rem;
        }
      }

        /* Keyframe animation for dropdown */
        @keyframes dropdownSlideIn {
          from {
            opacity: 0;
            transform: translateY(-15px);
          }

          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @keyframes dropdownSlideOut {
          from {
            opacity: 1;
            transform: translateY(0);
          }

          to {
            opacity: 0;
            transform: translateY(-10px);
          }
        }
        
         footer {
            background: var(--primary-color);
            color: #fff;
            padding: 40px 20px;
            border-top: 4px solid #001936;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: auto;
            justify-content: space-between;
            gap: 20px;
        }

        .footer-section {
            flex: 1;
            min-width: 280px;
            text-align: center;
        }

        .footer-section h2 {
            margin-bottom: 15px;
            font-size: 20px;
            color: #fff;
            position: relative;
            display: inline-block;
        }

        .footer-section h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            width: 50px;
            height: 2px;
            background: #fff;
            transform: translateX(-50%);
        }

        .footer-section p,
        .footer-section ul {
            color: #ecf0f1;
            font-size: 14px;
            line-height: 1.6;
            margin: 10px 0;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            text-decoration: none;
            color: #ecf0f1;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #3498db;
        }

        .footer-section.social {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-section.social a {
            display: inline-block;
            margin: 5px;
            font-size: 24px;
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .footer-section.social a:hover {
            color: #3498db;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 10px;
            background: #001936;
            margin-top: 20px;
            font-size: 14px;
            color: #bdc3c7;
        }

        .footer-bottom a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-bottom p {
            color: #fff;
            margin: 0;
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .footer-section.social {
                align-items: center;
            }
        }
        
        
    