:root {
  --primary: #0b2d6b;
  --secondary: #123a8c;
  --accent: #ffb703;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

/* ---------- GLOBAL ---------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #002856;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
header{
  width: 100%;
  height: auto;
  position: relative;
  padding: 7px 0px;
  background-color: #fff;
}
header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .brand{
  max-width: 300px;
}
header .container .brand img{
  width: 100%;
}
header .container nav ul li{
  display: inline-block;
}
header .container nav ul li a{
  display: block;
  padding: 7px 15px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}
/* ---------- HERO ---------- */
.hero {
  /*background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;*/
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  /*color: #e5e7eb;*/
  font-size: 1.15rem;
}

/* ---------- GRID / CARDS ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

/* ---------- SECTION VARIANTS ---------- */
.section-dark {
  background: #0f172a;
  background:#f5f3ef;
  color: #6b7280;
}

.section-dark p {
  color: #6b7280;
}

.section-dark h2 {
  color: #1f2937;
}

/* ---------- CONTACT ---------- */
.contact-box {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ---------- FOOTER ---------- */
footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
}


/*****Contact Page*****/

.contact-wrapper {
            display: flex;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            max-width: 1100px;
            margin: 50px auto;
        }

        .contact-info {
            background: #000080;
            color: white;
            padding: 60px 50px;
            flex: 0 0 370px;
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 25px;
        }

        .contact-info p a {
            font-size: 16px;
            margin-bottom: 50px;
            opacity: 0.95;
            text-decoration:none;
            color:#dadaed;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 70px;
        }

        .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .info-content h3 {
            font-size: 14px;
            font-weight: normal;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 16px;
            margin: 0;
            opacity: 1;
            color: #cecece;
        }

        .contact-form {
            padding: 60px 70px;
            flex: 1;
        }

        .contact-form h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #333;
        }

        .form-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .form-group {
            flex: 1;
        }

        .form-group.full-width {
            width: 100%;
        }

        label {
            display: block;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        input, textarea {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            font-size: 16px;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s;
            background: transparent;
           
        }
 .mt-3{
   margin-top: 25px;
 }
        input:focus, textarea:focus {
            outline: none;
            border-bottom-color: #000080;
        }

        input::placeholder, textarea::placeholder {
            color: #ccc;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            margin-bottom: 30px;
        }

        .submit-btn {
            background: #000080;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #00c896;
        }

        @media (max-width: 968px) {
            .contact-wrapper {
                flex-direction: column;
            }

            .contact-info {
                flex: 1;
            }

            .form-row {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media (max-width: 640px) {
            .contact-info, .contact-form {
                padding: 40px 30px;
            }

            h1 {
                font-size: 24px;
                margin-bottom: 40px;
            }
        }