@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Marcellus&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Satisfy&family=Share+Tech&display=swap');


html,body{
  scroll-behavior:smooth;
}

:root{

  --navy:#071747;

  --gold:#d99212;

  --light:#f7f9fd;

  --border:#e5e9f2;

  --green:#00a862;

}

*{

  box-sizing:border-box;

  margin:0;

  padding:0;

}

body{

  font-family:Arial, sans-serif;

  color:var(--navy);

  background:white;

  line-height:1.5;

}
.container {
    width: 94%;
    max-width: 1240px;
    margin: auto;
}

/* Top Bar */

.top-bar {
    background: #0d1b3d;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.top-bar i,
.top-bar small {
    color: #d99212;
}

/* Header */

header {
    padding: 20px 0;
    background: #fff;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 300px;
    height:200px;
    object-fit: cover;
}

.logo h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    font-family: 'playfair', serif;
}

.logo span {
    color: #d99212;
}

.logo small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-family: "Dancing Script", cursive;
    font-size: 18px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}
nav a:hover {
    color: #d99212;
    border-bottom: 1px solid #d99212;
    transition: color 0.3s, border-bottom 0.3s;
}
/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0d1b3d;
}

/* Desktop nav */
.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 1000;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0d1b3d;
        margin-top: 15px;
        border-radius: 8px;
        overflow: hidden;
    }

    .main-nav a {
        color: #fff;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    #menu-toggle:checked ~ .main-nav {
        display: flex;
    }

    .header-grid {
        position: relative;
    }
    .logo img {
    width: 200px;
    height:200px;
    object-fit: cover;
}
}
.header-contact {
    text-align: right;
}

.header-contact strong {
    display: block;
    font-size: 24px;
    color: #0d1b3d;
}

.header-contact p {
    margin: 5px 0 15px;
    font-size: 12px;
}
.header-contact .free {
    color: var(--gold) ;
    font-weight: bold;
    text-transform: uppercase;
}
.header-contact .contact-number {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}
.header-contact .contact-number i {
    color: var(--gold);
    font-size: 18px;
}

.btn-gold {
    display: inline-block;
    padding: 12px 24px;
    background: #d99212;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Tablet */

@media (max-width: 992px) {
    .header-grid {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        text-align: center;
    }

    nav {
        justify-content: center;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
    width: 200px;
    height:200px;
    object-fit: cover;
}

    .logo h2 {
        font-size: 22px;
    }

    nav {
        gap: 15px;
        justify-content: center;
    }

    .header-contact strong {
        font-size: 20px;
    }
    .header-contact{
      display: none;
    }
    .btn-gold {
        width: 100%;
        max-width: 300px;
    }
}
.btn{

  display:inline-block;

  padding:14px 22px;

  border-radius:6px;

  text-decoration:none;

  font-weight:bold;

  text-transform:uppercase;

  font-size:13px;

}

.btn-gold{

  background:var(--gold);

  color:white;

  display: flex;

  justify-content: center;

  align-items: center;

}

.btn-outline{

  border:2px solid var(--gold);

  color:var(--navy);

  background:white;

  width:100%;

  text-align:center;

  margin-top:18px;

}

/* Hero section */
.hero .container .row h1{
  font-size: 60px;
  text-align: center;
  color: var(--navy);
}



.cw-contact-wrapper{
    background:#fff;
    border:1px solid var(--gold);
    border-radius:15px;
    padding:40px;
}

.cw-contact-title{
    text-align:center;
    color:var(--navy);
    margin-bottom:30px;
}
.cw-contact-title span{
  color: var(--gold);
  font-weight: bolder;
}
.cw-input,
.cw-textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:15px;
    outline:none;
}

.cw-input{
    height:55px;
    margin-top: 10px;
}

.cw-textarea{
    resize:none;
    margin-top: 10px;
}

.cw-input:focus,
.cw-textarea:focus{
    border-color:var(--gold);
}

.cw-submit-btn{
    background:var(--navy);
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:10px;
    transition:.3s;
}

.cw-submit-btn:hover{
    background:var(--gold);
    color:var(--navy);
}

.cw-contact-cards{
    background: #fff;
}

.cw-card{
    background: #0a1f44; /* navy */
    color: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.cw-card:hover{
    transform: translateY(-5px);
    border: 1px solid #d99212; /* gold */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cw-icon{
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: #d99212; /* gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw-icon i{
    font-size: 26px;
    color: #0a1f44;
}

.cw-card h3{
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cw-card p{
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive tweaks */
@media(max-width: 768px){
    .cw-card{
        padding: 30px 20px;
        
    }

    .cw-card h3{
        font-size: 20px;
    }
}








/* footer section */
.footer {
  background: #0a1f3d; /* Deep Navy */
  color: #e2e8f0;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.3fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.footer-logo img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #f5b301;
}

.footer h4 {
  font-size: 1.35rem;
  color: #f5b301;
  margin-bottom: 18px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.info-item a:hover {
  color: #f5b301;
}

.info-item span {
  font-size: 20px;
  color: #f5b301;
  min-width: 24px;
}

.footer-links,
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-trust li {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #f5b301;
  padding-left: 6px;
}

.footer-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-trust li {
  position: relative;
  padding-left: 22px;
}

.footer-trust li::before {
  content: "✓";
  color: #f5b301;
  position: absolute;
  left: 0;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(245, 179, 1, 0.15);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #94a3b8;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .info-item {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 110px;
    height: 110px;
  }
}

/* Modal background */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
}

/* Modal box */
.modal-content{
  background:#fff;
  padding:25px;
  width:350px;
  border-radius:10px;
  position:relative;
}

/* Close button */
.close{
  position:absolute;
  right:10px;
  top:5px;
  font-size:22px;
  cursor:pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea{
  width:100%;
  margin:8px 0;
  padding:10px;
}
.button{
  background:var(--gold);
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}
.button:hover{
  background: var(--navy);
  transition: background 0.3s;
  border: 2px solid var(--gold);
}

.modal-content button{
  background:var(--gold);
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:6px;
  font-weight:bold;
  cursor:pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
