 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
      background-color: #f5f5f7;
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f5f5f7;
}

.navbar {
    background-color: #1d1d1f;
    padding: 0 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    position: relative;
}

.nav-links li {
    position: relative;
    margin: 0 20px;
}

.nav-links a {
    color: #f5f5f7;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.logo a {
    font-size: 20px;
}

.search a {
    font-size: 16px;
}

/* Dropdown Styling */

.dropdown-menu {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100vw;
    background-color: #fff;
    padding: 40px 100px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-content {
    display: flex;
    gap: 80px;
}

.dropdown-content h4 {
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-content a {
    display: block;
    color: #1d1d1f;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
}

.dropdown-content a:hover {
    text-decoration: underline;
}


/*   Ozeal  for 17 pro hero section general styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* body styling of hero section */

/* the hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px 20px;
    position: relative;
    background-color: #030303;
}
/* content wrap using tailwind */
.content-wrapper {
    text-align: center;
    z-index: 10;
    margin-bottom: 40px;
}

.product-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.1;
}

.tagline {
    font-size: 28px;
    font-weight: 400;
    color: #f5f5f7;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.cta-button {
    background-color: #0071e3;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 17px;
    border-radius: 980px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: inherit;
}
/* hovering */
.cta-button:hover {
    background-color: #0077ed;
    transform: scale(1.02);
}

.cta-button:active {
    transform: scale(0.98);
}
/*product image styling */
.product-image {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.iphone-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateY(-20px) rotateX(2deg);
    }
}
/* water mark */
.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    z-index: 5;
}

.watermark-small {
    font-size: 12px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 40px;
    }
    
    .tagline {
        font-size: 21px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 10px 28px;
    }
    
    .hero-section {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 18px;
    }
}

/* ozeal Air section */

/* This is General styling  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* hero border using flex */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* the content styling */
.content {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}
/* tilte of air */
.title {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #1d1d1f;
}
/* the sub-title */
.subtitle {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #1d1d1f;
    margin-bottom: 32px;
}
/* another sub-title with paragraph */
.subtitle p {
    margin: 4px 0;
}
/* button behaviours */
.cta-button {
    background-color: #0071e3;
    color: #ffffff;
    border: none;
    padding: 14px 38px;
    font-size: 17px;
    border-radius: 980px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.25);
}

.cta-button:hover {
    background-color: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.35);
}

.cta-button:active {
    transform: translateY(0);
}
/* product display */
.product-showcase {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}
/* the container stylying */
.iphone-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
/* air dispaly and animation */
.iphone-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
}

/* fade in and out behavious */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 0.95;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 0.95;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hand-left,
    .hand-right {
        width: 150px;
        height: 250px;
    }
    
    .iphone-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 21px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 12px 32px;
    }
    
    .hand-left,
    .hand-right {
        display: none;
    }
    
    .hero {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .content {
        margin-bottom: 40px;
    }
}




* {
    box-sizing: border-box;
    margin: 0;
}

/* Photo-Grid section Height & width */
.photo-grid {
    height: 100%;
    width: 100%;
    position: relative;
}

/* Grid-photos height & width */
.grid-photos {
    position: relative;
    height: 100%;
    width: 100%;
}

/* grid-item position & height */
.grid-item {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Image container  */
.img-house {
    margin-top: 20px;
    position: absolute;
    height: 50%;

}

/* image fitting */
.img-house img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* item-1 & item-2 background styling */
.item-1,
.item-2 {
    background-color: black !important;
    display: flex;
    justify-content: center;
}

/* Image scaling */
.item-1 img {
    transform: scale(1.5);

}

.item-2 img {
    transform: scale(1.1);
}

.item-3 img {
    transform: scale(1.2);
}

.item-4 {
    background: linear-gradient(105deg, rgb(190, 216, 225), white);
}

.item-4 img {
    transform: scale(0.7);
    z-index: 1;
}

/* aboje's footer css start here */

.container-fluid{
    /* max-width: 1170px; */
    margin: auto;
    background-color: lightgray ;
    padding-bottom: 10px;
}

.run{
    display: flex;
    flex-wrap: wrap;
}

ul{
    list-style: none;
}

.footer{
    padding: 70px 0;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}

.footer-col h3{
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 25px;
    font-weight: 500;
    position: relative;
}

.footer-col h3{
    content: '';
    bottom: 10px;
    box-sizing: border-box;
}

.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    color: grey;

}

.footer-col ul li a:hover{
    text-decoration: underline;
}
.text{
    padding-left: 15px;
    cursor: pointer;
}
.blue{
    color: blue;
}
.blue:hover{
    text-decoration: underline;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: #f5f5f7;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 600;
  color: #1d1d1f;
}

.hero-content p {
  font-size: 28px;
  margin-top: 10px;
  color: #6e6e73;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #0071e3;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  background: #005bb5;
}

.hero-images {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-images img {
  max-width: 1100px;
  width: 800px;
  height: 500px;

}
