*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
}
.header {
display: flex;
justify-content:space-between;
align-items: center;
padding: 15px 20px;
}
.logo{
height:50px;
}
.hamburger{
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap:4px;
width:35px;
height:30px;
cursor:pointer;
border:2px solid #1f3493;
border-radius:5px;
padding:4px;
transition:all 0.3s ease;
    }
.hamburger div {
width: 22px;
height: 3px;
background-color: #1f3493;
border-radius: 3px;
transition: all 0.3s ease;
}
.hamburger.open div:nth-child(1){
transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
opacity: 0;
}
.hamburger.open div:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.navbar{
display:flex;
align-items:center;
gap:20px;
}
.navbarmenu {
background-color: #dcdcdc;
padding: 8px 20px;
border-radius: 20px;
display: flex;
gap: 20px;
}
.navbarmenu a {
text-decoration:none;
color:#003366;
font-weight:500;
}
.user-icon {
font-size: 30px;
color: #1f3493;
cursor: pointer;
    }

	
.main {
    background: #D8EBFA;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.side img {
    width: 400px;
    height: auto;
}

.box {
    background: #003366;
    padding: 45px;
    border-radius: 15px;
    color: #fff;
    width: 650px;
}
.box h1{
	text-align:center;
	
}
.content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* ===== FORM ===== */
.form {
    width: 55%;
}

.form h4{
    margin-bottom: 12px;
    font-size: 18px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: #ccc;
}

.form textarea {
    height: 120px;
    resize: none;
}

.form button {
    width: 120px;
    padding: 10px;
    background: #fff;
    border: none;
    border-radius: 6px;
    color: #003366;
    font-weight: bold;
    cursor: pointer;
}

/* ===== CONTACT DETAILS ===== */
.contact {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 25px; /* space between each block */
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact h4 {
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SOCIAL STYLE ===== */
.follow {
    margin-top: 10px;
    font-size: 15px;
}

.social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

.social img {
    width: 32px;
    height: 32px;
    border-radius: 50%;   /* ROUND ICONS */
    padding: 6px;
    background: #D8EBFA;
    cursor: pointer;
    transition: 0.3s;
}

.social img:hover {
    transform: scale(1.1);
}



/* Franchise Section */

.franchise-section {
    
    text-align: center;
    padding: 60px 20px;
}

.franchise-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.tagline {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 40px;
}

/* Container Layout */
.franchise-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Card */
.franchise-card {
    background: #fff;
    width: 250px;
    padding: 100px 20px 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    overflow: visible;  /* <-- This fixes the clipping issue */
color:black;
}
 a{
	text-decoration:none;
}
/* Card Image */
.fcard-img {
    width:180px;
    height:180px;
    object-fit: contain;
    border-radius: 20px; /* Rounded corners visible now */
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
}


/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .franchise-container {
        flex-direction: column;
        align-items: center;
    }

    .franchise-card {
        margin-bottom: 40px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
    .side img {
        width: 90%;
    }
    
    .box {
        width: 90%;
    }
    
    .contact {
        width: 100%;
    }
}




footer {
      text-align: center;
      font-size: 13px;
      padding: 20px;
      color: #001f3f;
      
    }

    footer a {
      color: #003366;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }

@media (max-width: 768px) {
  .hamburger {
display: flex;
}
.navbarmenu {
display:none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
padding: 10px 0;
background-color: #f5f5f5;
z-index: 10;
}
.navbarmenu.active {
display: flex;
}


  .main {
    height: auto;
    padding: 20px 10px;
    background-size: cover;
    background-position: center;
  }

  .first {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }

  .side {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .side img {
    max-width: 90%;
    height: auto;
    margin-left: 0;
  }

  .box {
    width: 90%;
    padding: 20px;
    border-radius: 15px;
    height: auto;
  }

  h2 {
    font-size: 20px;
    margin-top: 0;
    padding: 10px 0;
  }

  .content {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .form, .contact {
    width: 100%;
  }

  .form input, .form textarea, .form button {
    width: 100%;
  }

  .contact {
    background: none;
  }

  
}
