
@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');


:root{

  --navy:#071747;

  --gold:#d99212;

  --light:#f7f9fd;

  --border:#e5e9f2;

  --green:#00a862;

}

*{

  box-sizing:border-box;

  margin:0;

  padding:0;

}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

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;
}
.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;
}
/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 1000;
    }
    .logo img {
    width: 200px;
    height:200px;
    object-fit: cover;
}
    .header-contact{
        display: none;
    }
    .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;
    }
}
.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;
}

.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;
    }

    .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;

}

/* 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;
    }
}
.pulse-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    pointer-events: none;
}

/* Hero section */
.hero-section{
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-heading h1{
  font-size:  70px;
  font-family: 'playfair', serif;
  color: var(--navy);
}
.hero-heading p{
  color: var(--gold);
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-size: 20px;
}

.divider-1{
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin: 40px 0;
}

.hero-section .paragraph-row p{
  font-size: 22px;
  line-height: 1.6; 
  text-transform: uppercase;
  font-weight: bold;
  color: var(--navy);
}
.hero-section .row p span{
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}
.hero-section .row h2{
  font-size: 34px;
  margin-bottom: 15px;
  font-family: 'dancing script', cursive;
  color: var(--gold);
  font-weight: bolder;
}
.hero-section p{
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
}

/* hero-right section */
.contact-box {
    max-width: 100%;
    border-left: 1px solid var(--gold);
    padding-left: 18px;
    font-family: Arial, sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #06275c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.content h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #06275c;
    line-height: 1;
}

.content p {
    margin: 4px 0 0;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.content span {
    color: #f5a623;
    font-weight: 700;
}

.content a,
.content p {
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-box {
        max-width: 100%;
    }

    .content h3 {
        font-size: 24px;
    }
}

/* Pros */
.trust-bar {
  background: linear-gradient(90deg, #071a3a 0%, #0b2a5b 100%);
  color: #fff;
  padding: 20px;
  display: flex;
  margin: 20px;
  border-radius: 10px;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 25px;
}

/* ITEM */
.trust-item {
  display: flex;
  /* align-items: center; */
  gap: 12px;
  flex: 1;
  /* justify-content: center; */
  /* margin-left: 40px; */
  padding: 20px;
}

/* ICONS */
.trust-item i {
  font-size: 30px;
  color: #f5b301;
  margin-top: 10px;
}

.google-icon i {
  font-size: 40px;
  color: #f5b301;
}
/* TEXT BLOCK */
.text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.text strong {
  font-size: 16px;
  font-weight: 700;
}

.text span {
  font-size: 12px;
  opacity: 0.9;
}

/* RATING SPECIAL */
.rating {
  flex-direction: column;
  gap: 4px;
}

.stars i {
  font-size: 12px;
  color: #f5b301;
  margin-right: 2px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 45px;
  background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-bar {
    height: auto;
    padding: 15px 0;
  }
  .google-icon {
    display: none;
  }
  .trust-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .divider {
    display: none;
  }
 
  .trust-item {
    flex: 1 1 45%;
    justify-content: flex-start;
    padding: 10px;
  }

  
}

@media (max-width: 600px) {
  .trust-item {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .card-2 .service-item{
            padding: 20px 20px;
        }
        .card-2 .service-item small{
            font-size: 16px;
        }
}


/* Prices */
.header-title {
            font-family: 'Playfair Display', serif;
            color: var(--navy);
            padding: 18px 0;
            text-align: center;
            border-radius: 8px;
        }
        .section-header {
            background-color: #0a2540;
            color: #d99212;
            padding: 23px 20px;
            font-weight: bold;
            border-radius: 8px 8px 0 0;
        }
        .price-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .service-item {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-bottom: 1px solid #eee;
        }
        .service-item i{
            color: #d99212;
        }
        .card-2 .service-item{
            padding: 31px 20px;
        }
        .card-2 .service-item small{
            font-size: 18px;
        }

        .service-item:last-child { border-bottom: none; }
        .service-icon {
            width: 48px; height: 48px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            color: #0a2540;
            font-size: 1.6rem;
        }
        .price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #0a2540;
            margin-left: auto;
        }
        .leaflet-1 strong{
            font-size: 20px;
            color: var(--gold);
            font-family: "DM", cursive;
        }
        .icon-2{
            color: var(--gold);
            font-size: 50px;
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }
        /* .additional-services {
            background-color: #0a2540;
            color: white;
            border-radius: 10px;
        } */


       .additional-services{
    border: 1px solid var(--navy);
    min-height: 200px;
    border-radius: 10px;
}
        .additional-services h1{
            text-align: center;
            background-color: var(--navy);
            color: #d99212;
            font-size: 25px;
            padding: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        .additional-services .col-lg-3{
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            border-right: 1px solid gray;
        }
        .icon-section{
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .icon-section .icons{
            height: 60px;
            width: 60px;
            border-radius: 50%;
            background-color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-section .icons i{
            font-size: 35px;
            color: var(--gold);
        }



        .additional-services .text-section{
            display: block;
            justify-content: center;
            align-items: center;
        }
        .text-section .service-title{
            font-size: 20px;
            font-weight: bold;
            color: var(--navy);
        }
        .text-section .service-price{
            font-size: 35px;
            font-weight: bold;
            color: var(--gold);
        }
        @media (max-width: 991px) {

    .additional-services{
        height: auto;
    }

    .additional-services .col-lg-3{
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 20px;
    }

    .additional-services .col-lg-3:last-child{
        border-bottom: none;
    }

    .icon-section .icons{
        width: 55px;
        height: 55px;
    }

    .icon-section .icons i{
        font-size: 28px;
    }

    .text-section .service-title{
        font-size: 18px;
    }

    .text-section .service-price{
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .additional-services{
        height: auto;
    }

    .additional-services h1{
        font-size: 22px;
    }

    .additional-services .col-lg-3{
        text-align: center;
        padding: 20px 15px;
    }

    .additional-services .row .row{
        flex-direction: column;
        align-items: center;
    }

    .icon-section{
        margin-bottom: 15px;
    }

    .icon-section .icons{
        width: 60px;
        height: 60px;
    }

    .icon-section .icons i{
        font-size: 30px;
    }

    .text-section{
        text-align: center;
    }

    .text-section .service-title{
        font-size: 20px;
    }

    .text-section .service-price{
        font-size: 32px;
    }

    .service-small,
    .text-section small{
        display: block;
    }
    
}


        .leaflet .col-lg-5 img{
            transform: rotate(-10deg);
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        @media (max-width: 600px) {
            .leaflet .col-lg-5 img{
            transform: rotate(0deg);
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }
        }
        @media(max-width:992px){
            .leaflet .col-lg-5 img{
            transform: rotate(0deg);
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }}
        .leaflet .col-lg-5{
            padding: 40px;
            background-color: rgb(253, 234, 210);
            border-radius: 10px;
        }
        .col-lg-5 .col-lg-6 h5{
            font-family: 'DM' , sans-serif;
            font-weight: bold;
            color: var(--navy);
        }
        
        .gold-accent { color: var(--gold); }
        .why-choose {
            border: 3px solid #d99212;
            border-radius: 12px;
            padding: 30px;
            
        }
        
        .why-choose .icons-2 i{
            color: var(--gold);
            font-size: 50px;
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }
        .contact-strip {
            background-color: #0a2540;
            color: white;
        }
        em{
          font-family: "Dancing Script", cursive;
          color: var(--gold);
          font-size: 28px;
        }
        .web{
          font-size: 14px;
          color: var(--gold);
          font-weight: bold;
        }
        
        footer {
    background: #0b1f4d;
    color: #fff;
    padding: 60px 0 40px;
}
/* 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;
  }
}
